/* Global styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    color: #2d3748;
    margin: 0;
    margin-top: 130px;
    margin-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h2 {
    text-align: center;
    color: #2d3748;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 30px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #61A223, #8bc34a);
    margin: 12px auto 0;
    border-radius: 2px;
}

form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Form field styles */
form div {
    margin-bottom: 15px;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    display: block;
    margin-bottom: 6px;
    margin-top: 12px;
    letter-spacing: 0.2px;
}

input, select {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f7fafc;
    transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}

input:focus, select:focus {
    border-color: #61A223;
    outline: none;
    box-shadow: 0 0 0 3px rgba(97, 162, 35, 0.15);
    background-color: #fff;
}

/* Flexbox layout for horizontal alignment */
.form-group-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-group-horizontal > div {
    flex: 1;
    min-width: 200px; /* Adjust for your needs */
}

.form-group-horizontal img {
    max-width: 100%;
    height: auto;
}

/* Checkbox and image styles */
input[type="checkbox"] + label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

label img {
    margin-left: 10px;
    border-radius: 4px;
}

/* Button-like style for each selection box with image */
.benne {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 180px;
}

.benne:hover {
    background-color: #f0fdf4;
    box-shadow: 0 6px 20px rgba(97, 162, 35, 0.12);
    border-color: #a5d6a7;
    transform: translateY(-2px);
}

.benne img {
    width: 80px;
    margin-bottom: 10px;
}

.benne label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d3748;
}

/* Quantity selector styles */
.quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-selector button {
    padding: 6px 12px;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #61A223, #6fbf2e);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.quantity-selector button:active {
    transform: scale(0.88);
}

.quantity-selector input {
    width: 48px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 8px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.2s;
}

.quantity-selector input.qty-bump {
    animation: qtyBump 0.3s ease;
}

@keyframes qtyBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.25); color: #61A223; }
    100% { transform: scale(1); }
}

.quantity-selector button:focus, input:focus {
    outline: none;
}

.quantity-selector button:hover {
    background: linear-gradient(135deg, #4e8a1b, #5ea825);
    box-shadow: 0 3px 10px rgba(97, 162, 35, 0.3);
}

/* Submit button */
button[type="submit"] {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #61A223, #6fbf2e);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #4e8a1b, #5ea825);
    box-shadow: 0 6px 20px rgba(97, 162, 35, 0.3);
    transform: translateY(-2px);
}

button[type="submit"]:active {
    transform: scale(0.98);
}

button[type="submit"]:focus {
    outline: none;
}

/* Form step transitions */
.form-step {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    .quantity-selector button {
        padding: 6px;
        font-size: 1rem;
    }

    .quantity-selector input {
        width: 40px;
        font-size: 0.9rem;
    }

    .benne img {
        width: 50px;
    }
}

@media (max-width: 480px) {
    input, select, button[type="submit"] {
        font-size: 0.9rem;
    }

    label img {
        width: 40px;
    }

    .quantity-selector input {
        width: 35px;
    }
}

/* Style des descriptions camions */

.fw-bold {
    font-weight: bold;
}

.fs-sm {
    font-size: 14px; /* Ajustez selon vos besoins */
    line-height: 1.5;
}

.mb-36 {
    margin-bottom: 20px; /* Espacement après chaque paragraphe */
}

ul {
    margin-top: 10px; /* Espacement entre le paragraphe et les puces */
    padding-left: 20px; /* Indentation des listes */
}

ul li {
    margin-bottom: 5px; /* Espacement entre les puces */
}


/* Maintien des styles de grille pour les choix et les contenants */
.choices-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 éléments par ligne */
    gap: 20px;
    margin-top: 20px;
}

/* Choix général avec image, peut s'appliquer aussi aux contenants */
.choice, .benne {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
    background-color: #fff;
}

/* Effet au survol pour les deux types */
.choice:hover, .benne:hover {
    border-color: #a5d6a7;
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 162, 35, 0.12);
}

/* Images et texte dans les choix et contenants */
.choice img, .benne img {
    margin-bottom: 10px;
    width: 80px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.choice:hover img, .benne:hover img {
    transform: scale(1.08);
}

.choice span, .benne label span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    display: table-cell;
}

/* État sélectionné avec animation */
.choice.selected {
    border-color: #61A223;
    background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
    box-shadow: 0 0 0 3px rgba(97, 162, 35, 0.2), 0 4px 15px rgba(97, 162, 35, 0.15);
    animation: selectPop 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.choice.selected img {
    transform: scale(1.1);
}

.choice.selected span {
    color: #2e7d32;
    font-weight: 600;
}

.choice.selected::after {
    content: '\2713';
    position: absolute;
    top: 8px;
    right: 10px;
    background: #61A223;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    animation: checkPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.choice {
    position: relative;
}

@keyframes selectPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .choices-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 éléments par ligne */
    }
}

@media (max-width: 480px) {
    .choices-grid {
        grid-template-columns: 1fr; /* 1 élément par ligne */
    }

    .quantity-selector input {
        width: 40px;
    }
}

#description {
    width: 100%;
    min-height: 150px;
    padding: 14px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f7fafc;
    box-sizing: border-box;
    transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
    resize: vertical;
}

#description:focus {
    border-color: #61A223;
    outline: none;
    box-shadow: 0 0 0 3px rgba(97, 162, 35, 0.15);
    background-color: #fff;
}

.accordion {
    margin: 20px 0;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    background: linear-gradient(135deg, #61A223, #6fbf2e);
    color: white;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.25s;
}

.accordion-header:hover {
    box-shadow: 0 4px 12px rgba(97, 162, 35, 0.25);
    transform: translateY(-1px);
}

.accordion-body {
    background-color: #fafcf8;
    padding: 20px;
    display: none;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e8f0e0;
    border-top: none;
}

.accordion-item.active .accordion-body {
    display: flex !important; /* Afficher le corps de l'accordéon avec flex uniquement quand il est actif */
}

/* Furniture Item Flexbox Adjustment */
.furniture-item .quantity-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Accordion Container Styling */
.accordion-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espacement entre les items */
    justify-content: flex-start;
}

.furniture-item {
    flex: 1 1 calc(25% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    position: relative;
}

.furniture-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #c8e6c9;
}

.furniture-item span {
    font-weight: 600;
    font-size: 0.85rem;
    color: #4a5568;
    text-align: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector button {
    padding: 10px;
    background-color: #61A223;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.quantity-selector button:hover {
    background-color: #4e851a; /* Assombrir la couleur au survol */
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    font-size: 1rem;
    margin: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.quantity-selector button:focus,
input:focus {
    outline: none;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .furniture-item {
        flex: 1 1 100%; /* Chaque élément prendra toute la largeur sur mobile */
    }
}

/* Volume Estimé : mise en évidence */
#total-volume {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f7fafc, #eef6e6);
    border-radius: 14px;
    border: 2px solid #e8f0e0;
    text-align: center;
}

#total-volume h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
}

#volume-result {
    color: #E53935;
    font-size: 2.8rem;
    font-weight: 700;
    transition: transform 0.3s;
}

/* Mise en forme des camions */
.camions {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.camion {
    border: 2px solid #e2e8f0;
    padding: 24px 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.camion h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 10px 0 8px;
}

@keyframes glow {
    0% {
        box-shadow: 0px 8px 16px rgba(97, 162, 35, 0.7), 0px 0px 10px rgba(97, 162, 35, 0.8);
    }
    50% {
        box-shadow: 0px 8px 16px rgba(97, 162, 35, 0.5), 0px 0px 15px rgba(97, 162, 35, 1);
    }
    100% {
        box-shadow: 0px 8px 16px rgba(97, 162, 35, 0.7), 0px 0px 10px rgba(97, 162, 35, 0.8);
    }
}

.camion.selected {
    border-color: #61A223;
    border-width: 4px;
    transform: scale(1.1);
    animation: glow 1.5s infinite; /* Applique l'animation lumineuse */
}


.camion:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #a5d6a7;
}

.camion img {
    width: 100%;
    height: auto;
    border-radius: 4px; /* Arrondit légèrement l'image */
}

.choisir-camion {
    background: linear-gradient(135deg, #61A223, #6fbf2e);
    color: white;
    border: none;
    padding: 11px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
}

.choisir-camion:hover {
    background: linear-gradient(135deg, #4e8a1b, #5ea825);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 162, 35, 0.3);
}

.choisir-camion:active {
    transform: scale(0.96);
}

/* Bouton suivant : plus grand et en couleur */
#next-step {
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #1A73E8, #4285f4);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

#next-step:hover {
    background: linear-gradient(135deg, #1558B0, #3367d6);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    transform: translateY(-2px);
}

#next-step:active {
    transform: scale(0.98);
}



#ascenseur-block {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

#ascenseur {
    width: 100px;
    padding: 5px;
}

.ascenseur-options {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre les options */
}

.ascenseur-options input[type="radio"] {
    margin-right: 5px;
}


.info-icon {
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.tooltip {
    display: none;
    position: absolute;
    top: 120%; /* Position au-dessus ou en dessous de l'icône */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

.info-icon:hover .tooltip,
.info-icon:focus .tooltip {
    display: block;
}

#previous-step {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 10px;
    margin-bottom: 20px;
}

#previous-step:hover {
    background-color: #f7fafc;
    border-color: #61a223;
    color: #61a223;
    transform: translateX(-3px);
}

/* Header styles */
#header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    left: 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alignement à gauche sur desktop */
    max-width: 1200px;
    margin: 0 auto;
}

#header .logo {
    max-height: 70px;
    width: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #header .container {
        justify-content: center; /* Centrer le logo sur mobile */
    }
}


 /* Bouton d'aide flottant en bas à droite */
 #helpButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1A73E8, #4285f4);
    color: #FFF;
    padding: 14px 22px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.25s;
}

#helpButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

/* Conteneur du formulaire d'aide */
#helpFormContainer {
    display: none; /* masqué par défaut */
    position: fixed;
    bottom: 80px;  /* pour laisser la place au bouton */
    right: 20px;
    width: 300px;
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 10000;
}

/* Styles du formulaire d'aide */
#helpForm {
    display: flex;
    flex-direction: column;
}

#helpForm h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#helpForm label {
    font-weight: 600;
    margin-bottom: 5px;
}

#helpForm input,
#helpForm textarea {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #CCC;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

#helpForm button[type="submit"] {
    background-color: #28A745;
    color: #FFF;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
}

#helpForm button[type="submit"]:hover {
    background-color: #218838;
}

/* Pour que le bouton et le formulaire restent bien visibles sur mobile */
@media (max-width: 600px) {
    #helpButton {
        bottom: 10px;
        right: 10px;
    }
    #helpFormContainer {
        width: 90%;
        right: 5%;
        bottom: 70px;
    }
}

/* Styles pour le bouton d'information et la modale */
.info-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    z-index: 1;
}

.info-button:hover {
    transform: scale(1.1);
}

.info-button i {
    color: #61A223;
    font-size: 1.2rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    overflow: auto;
}

.modal-content img {
    max-width: 90vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 5px;
}

.close-modal:hover {
    color: #333;
}

/* Pour que le bouton info soit bien positionné dans le label */
label[for="benne_10m3_cartons"] {
    position: relative;
}

@media (max-width: 600px) {
  .modal-content img {
    max-width: 98vw;
    max-height: 40vh;
  }
}

/* Required asterisk */
.required {
    color: #E53935;
    font-weight: 700;
}

/* Récapitulatif */
#recap-section {
    margin-top: 28px;
    border: 2px solid #c8e6c9;
    border-radius: 16px;
    overflow: hidden;
    animation: fadeIn 0.4s ease-in-out;
}

#recap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #61A223, #6fbf2e);
    color: white;
    padding: 16px 22px;
    cursor: pointer;
    user-select: none;
}

#recap-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
}

#recap-toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

#recap-toggle-icon.collapsed {
    transform: rotate(-90deg);
}

#recap-content {
    padding: 24px;
    background-color: #fafcf8;
}

.recap-block {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8f0e0;
}

.recap-block:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.recap-block h4 {
    color: #4a8a1b;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.recap-block p,
.recap-block div {
    font-size: 0.92rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

#recap-produits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#recap-produits-list li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: #4a5568;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #e8f0e0;
}

#recap-produits-list li:last-child {
    border-bottom: none;
}

#recap-produits-list li .recap-qty {
    background: linear-gradient(135deg, #61A223, #6fbf2e);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
}

#recap-edit {
    display: block;
    width: 100%;
    padding: 11px;
    margin-top: 14px;
    background-color: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
}

#recap-edit:hover {
    border-color: #61A223;
    color: #61A223;
    background-color: #f0fdf4;
}

#show-recap-btn {
    width: 100%;
    margin-top: 24px;
    padding: 14px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #61A223, #6fbf2e);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

#show-recap-btn:hover {
    background: linear-gradient(135deg, #4e8a1b, #5ea825);
    box-shadow: 0 6px 20px rgba(97, 162, 35, 0.3);
    transform: translateY(-2px);
}

#show-recap-btn:active {
    transform: scale(0.98);
}

#submit-btn {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1A73E8, #4285f4);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

#submit-btn:hover {
    background: linear-gradient(135deg, #1558B0, #3367d6);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    transform: translateY(-2px);
}

#submit-btn:active {
    transform: scale(0.98);
}

.recap-line {
    display: flex;
    gap: 8px;
    padding: 2px 0;
}

.recap-label {
    font-weight: 600;
    color: #2d3748;
}

.recap-value {
    color: #4a5568;
}