/* Styles personnalisés */
body {
    background-color: #f5f7fa;
}

.navbar-brand {
    font-weight: 700;
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.table th {
    font-size: 0.85rem;
    white-space: nowrap;
}

.table td {
    font-size: 0.85rem;
    vertical-align: middle;
}

.badge {
    font-weight: 500;
}

code {
    color: #6f42c1;
    font-size: 0.85em;
}

.progress {
    border-radius: 0.5rem;
}

.table-responsive {
    max-height: 70vh;
    overflow-y: auto;
}

.table-responsive thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Login page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flash messages */
.alert {
    border: none;
    border-radius: 0.5rem;
}

/* Status indicators */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.status-dot.online { background-color: #28a745; }
.status-dot.offline { background-color: #dc3545; }
