body {
    font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "sans-serif", Arial, sans-serif !important;
}


/* .satim-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.satim-form h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.satim-form .h3 {
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 24px;
}

.satim-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.satim-form input[type="text"],
.satim-form input[type="email"],
.satim-form select {
    width: 100%;
    padding: 12px;
    margin: 8px 0 16px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.satim-form input[type="submit"] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.satim-form input[type="submit"]:hover {
    background-color: #45a049;
}

.satim-form input[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.satim-error {
    color: #d32f2f;
    margin: 10px 0;
    padding: 15px;
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 4px;
    border-left: 4px solid #d32f2f;
}

.satim-success {
    color: #2e7d32;
    margin: 10px 0;
    padding: 15px;
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-radius: 4px;
    border-left: 4px solid #2e7d32;
}

.satim-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.satim-loading::after {
    content: "...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
    }
    40% {
        color: black;
        text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
    }
    60% {
        text-shadow: .25em 0 0 black, .5em 0 0 rgba(0, 0, 0, 0);
    }
    80%,
    100% {
        text-shadow: .25em 0 0 black, .5em 0 0 black;
    }
} */


/* Styles pour l'admin */

.status-pending {
    color: orange;
    font-weight: bold;
}

.status-completed {
    color: green;
    font-weight: bold;
}

.status-failed {
    color: red;
    font-weight: bold;
}

.satim-admin-notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.satim-admin-notice.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.satim-admin-notice.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.amount-display {
    background: linear-gradient(135deg, #F7931E, #ff6b35);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(247, 147, 30, 0.3);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #F7931E;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    transform: scale(1.2);
    cursor: pointer;
    pointer-events: auto;
    accent-color: #F7931E;
}

.checkbox-container label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #878787;
    cursor: pointer;
    flex: 1;
}

.hidden {
    display: none;
}

.recaptcha-container {
    margin: 1.5rem 0;
    display: flex;
}

.payment-button {
    width: 100%;
    background: linear-gradient(135deg, #F7931E, #ff6b35);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    margin-top: 1.5rem;
}

.payment-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
    background: linear-gradient(135deg, #ff6b35, #F7931E);
}

.payment-button:active:not(:disabled) {
    transform: translateY(0);
}

.payment-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-button img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 0.8rem;
}

.payment-button:disabled img {
    opacity: 0.6;
}

.satim-messages {
    margin-bottom: 1rem;
}

.satim-error {
    background: #fdf2f2;
    color: #e74c3c;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #fadbd8;
    font-size: 0.9rem;
}

.satim-success {
    background: #f0f9f0;
    color: #27ae60;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #d5f4e6;
    font-size: 0.9rem;
}

.loading {
    background: #e8f4f8;
    color: #2980b9;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #d6eaf8;
    font-size: 0.9rem;
    text-align: center;
}

.form-validation-hint {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.3rem;
}

.required-asterisk {
    color: #e74c3c;
    margin-left: 2px;
}

@media (max-width: 600px) {
    .satim-form {
        margin: 1rem;
        padding: 1.5rem;
    }
    .payment-button {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
}

.satim-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
}

.satim-form h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.2rem;
}

.satim-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 500;
    font-size: 0.9rem;
}

.satim-form input[type="text"],
.satim-form input[type="tel"],
.satim-form select,
.satim-form input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.satim-form input[type="text"]:focus,
.satim-form input[type="email"]:focus {
    outline: none;
    border-color: #F7931E;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.satim-form input[type="text"].error,
.satim-form input[type="email"].error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.amount-display {
    background: linear-gradient(135deg, #F7931E, #ff6b35);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(247, 147, 30, 0.3);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #F7931E;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    transform: scale(1.2);
    accent-color: #F7931E;
}

.checkbox-container label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

.recaptcha-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.payment-button {
    width: 100%;
    background: linear-gradient(135deg, #F7931E, #ff6b35);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    margin-top: 1.5rem;
}

.payment-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
    background: linear-gradient(135deg, #ff6b35, #F7931E);
}

.payment-button:active:not(:disabled) {
    transform: translateY(0);
}

.payment-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-button img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 0.8rem;
    border-radius: 4px;
}

.payment-button:disabled img {
    opacity: 0.6;
}

.satim-messages {
    margin-bottom: 1rem;
}

.satim-error {
    background: #fdf2f2;
    color: #e74c3c;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #fadbd8;
    font-size: 0.9rem;
}

.satim-success {
    background: #f0f9f0;
    color: #27ae60;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #d5f4e6;
    font-size: 0.9rem;
}

.loading {
    background: #e8f4f8;
    color: #2980b9;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #d6eaf8;
    font-size: 0.9rem;
    text-align: center;
}

.form-validation-hint {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.3rem;
}

.required-asterisk {
    color: #e74c3c;
    margin-left: 2px;
}

.checkbox-container:hover {
    background: #f1f3f4;
}

@media (max-width: 600px) {
    .satim-form {
        margin: 1rem;
        padding: 1.5rem;
    }
    .payment-button {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
}