/* Conteneur principal */
.reparation-container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2a2a2a, #3a3a3a); /* Fond sombre avec dégradé */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Ombre profonde */
    color: #f0f0f0;
}

/* Formulaire pour choisir la console */
.console-form {
    margin-bottom: 30px;
}

/* Sélection console */
.console-selection {
    border: 1px solid #444; /* Bordure sombre */
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a); /* Fond dégradé sombre */
    margin-bottom: 20px;
    color: #e6e6e6; /* Texte clair */
}

/* Formulaire image console */
.console-image-container {
    text-align: center;
    margin: 20px 0;
}

.console-image-container img {
    max-width: 100%;
    height: auto;
    border: 2px solid #444; /* Bordure sombre */
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* Ombre prononcée */
}

/* Groupes de services */
.service-group {
    margin-bottom: 30px;
}

.service-group legend {
    font-size: 1.5rem;
    color: #d2b48c; /* Texte beige doré */
    margin-bottom: 10px;
}

/* Options de services */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Cartes de services */
.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Équilibre les contenus à l'intérieur */
    text-align: left; /* Alignement du texte */
    padding: 15px;
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a); /* Fond sombre avec relief */
    border: 2px solid #444; /* Bordure sombre */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Ombrage plus marqué */
    width: 100%; /* Prend toute la largeur disponible */
    margin: 10px 0; /* Espace entre les cartes */
    cursor: pointer;
    position: relative;
    color: #e6e6e6; /* Texte clair */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Ombre renforcée */
    border-color: #d2b48c; /* Bordure beige doré */
    background: linear-gradient(145deg, #4a4a4a, #5b5b5b); /* Fond éclairci */
}

.service-card.selected {
    border-color: #d2b48c; /* Bordure beige doré */
    background: linear-gradient(145deg, #4a4a4a, #5b5b5b); /* Fond éclairci */
}

/* Icônes des services */
.service-card .icon {
    font-size: 2rem; /* Taille plus grande */
    margin-bottom: 10px;
    color: #d2b48c; /* Icône beige doré */
}

/* Boutons */
.btn-submit {
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a); /* Fond sombre */
    color: #e6e6e6; /* Texte clair */
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(145deg, #4a4a4a, #5b5b5b); /* Fond éclairci */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Ombre plus forte */
    transform: translateY(-5px);
    color: #fff; /* Texte blanc au survol */
}

/* Boutons de recherche */
.btn-search {
    background: linear-gradient(145deg, #4a4a4a, #5b5b5b); /* Fond sombre */
    color: #e6e6e6; /* Texte clair */
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-search:hover {
    background: linear-gradient(145deg, #5b5b5b, #6c6c6c); /* Fond éclairci */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Ombre renforcée */
    transform: translateY(-5px);
    color: #fff; /* Texte blanc au survol */
}
