/**
 * Styles frontend pour Barrel Parts Manager
 * Fichier de base pour éviter les erreurs 404
 */

/* Styles de base pour les quiz et formulaires */
.quiz-container {
    margin: 20px 0;
}

.quiz-question {
    margin-bottom: 20px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    opacity: 0.8;
}

/* Styles pour les boutons */
button,
.button,
.btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
.button:hover,
.btn:hover {
    opacity: 0.9;
}

/* Styles pour les formulaires */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
}

/* Styles pour les radios et checkboxes */
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
    margin-right: 8px;
}

label {
    cursor: pointer;
}
