/* Styles minimaux - Challenge 4 utilise Bootstrap au maximum */

/* Fond dark pour cohérence avec navbar */
body.bg-dark {
    min-height: 100vh;
}

/* Ajustement des bordures pour inputs groupés */
.input-group-text.border-end-0 {
    border-right: 0;
}

.form-control.border-start-0 {
    border-left: 0;
}

/* Animation shake pour erreurs */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.alert.shake {
    animation: shake 0.4s;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
