.acme-payment-recovery-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.acme-recovery-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.acme-recovery-card h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.acme-recovery-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #555;
}

.acme-recovery-loading {
    text-align: center;
    padding: 40px 20px;
}

.acme-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: acme-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes acme-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.acme-recovery-loading p {
    color: #666;
    font-size: 16px;
}

.acme-recovery-error {
    text-align: center;
    padding: 20px;
}

.acme-recovery-error h2 {
    color: #dc3232;
}

.acme-recovery-error p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.acme-recovery-reference {
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.acme-recovery-reference strong {
    color: #555;
    font-size: 14px;
    margin-right: 8px;
}

.acme-recovery-reference span {
    color: #0073aa;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.acme-recovery-summary {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.acme-form-data-list {
    margin-bottom: 20px;
}

.acme-form-data-item {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.acme-form-data-item:last-child {
    border-bottom: none;
}

.acme-form-data-item strong {
    color: #333;
    margin-right: 8px;
}

.acme-form-data-item span {
    color: #666;
}

.acme-recovery-amount {
    padding-top: 15px;
    border-top: 2px solid #ddd;
    margin-top: 15px;
    font-size: 18px;
}

.acme-recovery-amount strong {
    color: #333;
}

.acme-recovery-amount span {
    color: #0073aa;
    font-weight: 600;
    margin-left: 10px;
}

.acme-recovery-payment {
    margin-bottom: 30px;
}

#acme-payment-element {
    margin-bottom: 20px;
}

.acme-message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.acme-recovery-button {
    width: 100%;
    background: #0073aa;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.acme-recovery-button:hover {
    background: #005a87;
}

.acme-recovery-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.acme-recovery-success {
    text-align: center;
    padding: 40px 20px;
}

.acme-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #46b450;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

#acme-recovery-success h2 {
    color: #46b450;
    margin-bottom: 15px;
}

#acme-recovery-success p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .acme-payment-recovery-container {
        padding: 10px;
    }

    .acme-recovery-card {
        padding: 20px;
    }

    .acme-recovery-card h2 {
        font-size: 20px;
    }

    .acme-recovery-card h3 {
        font-size: 16px;
    }
}
