.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-top: 20px;
}

.form-title {
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.form-group {
    margin-top: 20px;
}

.form-group label {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.mb-2 {
    padding-bottom: 100px;
}

.form-card {
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    min-width: 60%;
}

.custom-radio-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .custom-radio-buttons {
        flex-direction: column;
        gap: 10px;
        /* Reduce gap between radio buttons on smaller screens */
    }

    .custom-radio-button {
        padding: 10px;
        /* Reduce padding to fit better on small screens */
        font-size: 1.1rem;
        /* Reduce font size slightly on smaller screens */
    }
}

@media (max-width: 480px) {
    .custom-radio-button {
        padding: 8px;
        font-size: 1rem;
        /* Further reduce font size for very small screens */
    }
}

.custom-radio-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.25rem;
    border: 2px solid var(--lightBlue);
    border-radius: 10px;
    background-color: transparent;
    color: var(--lightBlue);
    cursor: pointer;
    transition: all 0.3s;
}

.custom-radio-button.active,
.custom-radio-button:hover {
    background-color: var(--lightBlue);
    color: #fff;
}

.custom-radio-buttons input[type="radio"] {
    display: none;
}

.custom-radio-button .ticket-name {
    font-weight: bold;
}

/* Description des tickets */
.ticket-description {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 1.4rem;
    color: var(--darkGrey);
}

.info-icon {
    font-size: 1rem;
    cursor: pointer;
}

.custom-input {
    padding: 1rem;
    font-size: 1.6rem;
    border-radius: 10px;
    border: 2px solid var(--lightBlue);
    transition: all 0.3s;
    max-width: 100%;
    margin-top: 10px;
    display: block;
    color: var(--blue);
}

/* Changer la couleur du placeholder */
.custom-input::placeholder {
    color: var(--blue);
    /* Remplacez var(--blue) par la couleur que vous souhaitez utiliser */
}

.custom-input:focus {
    border-color: var(--lightBlue);
    transform: scale(1.02);
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: transparent;
    cursor: pointer;
    transition: border-color 0.3s;
}

.payment-option.selected {
    border-color: var(--lightBlue);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-radio-button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--black);
}

.payment-radio-button span {
    margin-left: 10px;
}

.payment-icon {
    width: 50px;
    height: auto;
}

#ussd-code {
    font-weight: bold;
}

/* Style pour la div contenant le code USSD */
.ussd-code {
    background-color: #f5f5f5;
    /* Light gray background */
    border: 2px solid var(--lightBlue);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #333;
    /* Dark text color */
    margin-bottom: 15px;
}

/* Style pour le span contenant le code USSD */
.ussd-code span {
    font-size: 1.5rem;
    /* Taille de police légèrement plus grande */
    color: var(--blue);
    /* Couleur spécifique */
    margin-right: 5px;
    /* Espace après le texte */
}

/* Style pour l'icône de copie */
.ussd-code i {
    cursor: pointer;
    margin-left: 5px;
    color: var(--blue);
    font-size: 24px;
}

.ussd-code i:hover {
    color: var(--lightBlue);
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-md-row {
    flex-direction: row;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-start {
    align-items: flex-start;
}

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .flex-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.payment-fields {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.payment-fields h1 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 10px;
}

.payment-fields ol {
    font-size: medium;
    margin-top: 20px;
    margin-left: 20px;
}

.payment-fields ol li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--darkGrey);
}

.payment-fields ol li i {
    margin-right: 5px;
    color: var(--blue);
}

.custom-submit-btn {
    background: var(--gradient);
    width: 300px;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.custom-submit-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.grouped-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Ajuste cet espace selon tes besoins */
}

.grouped-pricing .price,
.grouped-pricing .ticket-quantity {
    margin-bottom: 0;
}

.ticket-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 0;
}

.price {
    font-weight: bolder;
    color: var(--lightBlue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.ticket-quantity {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    gap: 10px;
}

.ticket-quantity label {
    font-size: 1.8rem;
    margin-right: 10px;
}

.ticket-quantity input {
    font-size: 2rem;
    /* Assure que la taille de police est cohérente */
    padding: 0.5rem;
    /* Ajuste le padding pour une meilleure apparence */
    text-align: center;
    /* Garde le texte centré */
    background: rgba(0, 0, 0, 0.1);
    /* Légère transparence pour l'arrière-plan */
    /* -webkit-appearance: none; Désactiver le style par défaut sur iOS */
    margin: 0;
    /* Réduire tout espace externe supplémentaire */
    width: 90px;
    /* Définir une largeur fixe pour éviter des changements de taille */
}

.price span {
    color: var(--blue);
    font-size: 1.5rem;
}

/* Style pour l'icône d'information */
.info-section {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    color: var(--blue);
    font-size: 1.8rem;
    position: relative;
    /* Relative positioning to position the info box */
}

.info-section .fa-info-circle {
    font-size: 2rem;
    color: var(--lightBlue);
    transition: color 0.3s ease;
    position: relative;
    top: 15px;
}

.info-section .fa-info-circle:hover {
    color: var(--blue);
}

/* Contenu d'information masqué par défaut */
.info-content {
    display: none;
    position: relative;
    top: 10px;
    width: 300px;
    background-color: #fff;
    border: 1px solid var(--lightBlue);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    z-index: 100;
}

.info-content ul {
    padding-left: 20px;
    font-size: 1.4rem;
    color: var(--darkGrey);
    list-style-type: disc;
}

.info-content ul li {
    margin-bottom: 10px;
}

/* Transition pour rendre le tout plus fluide */
.info-content {
    transition: all 0.3s ease;
}

/* Style de la section CGU */
.custom-checkbox-container {
    display: flex;
    align-items: center;
    color: var(--black);
}

.custom-checkbox-container label {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox-container a {
    color: var(--blue);
    text-decoration: underline;
    margin-left: 5px;
    transition: color 0.3s ease;
    font-size: 1.4rem;
}

.custom-checkbox-container a:hover {
    color: var(--lightBlue);
}

#accept-cgu {
    margin-left: 10px;
}

#accept-cgu-label {
    margin-left: 10px;
}

/* No payments options */
.no-operators {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.no-operators h2 {
    margin-bottom: 10px;
    font-size: 1, 5rem;
}

.no-operators p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.no-operators .whatsapp-support a {
    color: #856404;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.no-operators .whatsapp-support a i {
    margin-right: 10px;
}


.whatsapp-support {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


/* Loader - Affiché en plein écran */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    z-index: 1000;
}

/* Animation du spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

/* Effet de rotation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Alignement du bloc de confirmation */
#publicIdDisplay {
    text-align: center;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#publicIdDisplay h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--blue);
}

.public-id-container {
    display: flex;
    align-items: center;
    font-weight: bold;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.public-id-container button {
    background: none;
    border: none;
    color: var(--lightBlue);
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}