/* Style général */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Style du footer */
.footer {
    margin-top: auto;
}

/* Style de la navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Style des cartes */
.card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
    transition: transform .2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Style des boutons */
.btn {
    border-radius: 5px;
    padding: 8px 20px;
}

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2653d4;
}

/* Style des tableaux */
.table thead th {
    background-color: #f8f9fc;
    border-bottom: 2px solid #e3e6f0;
}

/* Style des formulaires */
.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78,115,223,.25);
}

/* Style des alertes */
.alert {
    border: none;
    border-radius: 5px;
}

/* Style du sidebar */
.sidebar {
    min-height: 100vh;
    background-color: #4e73df;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-nav {
        margin-top: 15px;
    }
    
    .card {
        margin-bottom: 20px;
    }
}

/* Style des badges */
.badge {
    padding: 5px 10px;
    border-radius: 30px;
}

/* Style des icônes */
.fas, .far, .fab {
    margin-right: 5px;
}

/* Style des liens */
a {
    text-decoration: none;
    color: #4e73df;
}

a:hover {
    color: #2e59d9;
}