/* 
 * Sistema Depositi - CSS Finale
 */

.deposito-container {
    margin: 40px 0;
}

.deposito-box {
    background: transparent;
}

.deposito-content {
    padding: 0;
}

.deposito-importo {
    background: #1e293b;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
    border: none;
}

.deposito-importo .label {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deposito-importo .importo {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

/* MODIFICA IMPORTANTE: RIMUOVI il :before che aggiungeva "EURO " */
/* .deposito-importo .importo:before {
    display: none;
} */

.paypal-button {
    display: block;
    background: linear-gradient(135deg, #003087, #009cde);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 18px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 48, 135, 0.3);
    border: none;
    cursor: pointer;
}

.paypal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.4);
    background: linear-gradient(135deg, #002366, #0088cc);
    color: white;
}

.paypal-button i {
    font-size: 22px;
    margin-right: 12px;
    vertical-align: middle;
}

.deposito-success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-content h4 {
    margin-top: 0;
    color: #155724;
    font-size: 24px;
    margin-bottom: 15px;
}

.success-content p {
    color: #155724;
    font-size: 16px;
    margin-bottom: 20px;
}

.whatsapp-button-success {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    margin: 15px 0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-button-success i {
    margin-right: 10px;
    font-size: 20px;
}

.payment-details {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

.payment-details p {
    margin: 5px 0;
    color: #555;
}

.deposito-info-semplice {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    margin: 20px 0;
}

.deposito-info-semplice p {
    margin: 5px 0;
}

.deposito-non-richiesto {
    background: #e2e3e5;
    color: #383d41;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #6c757d;
    margin: 20px 0;
}

.deposito-errore {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .deposito-importo .importo {
        font-size: 32px;
    }
    
    .paypal-button {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .deposito-success {
        padding: 20px 15px;
    }
    
    .success-icon {
        font-size: 48px;
    }
}