.scfv-precheckout-status-container {
    max-width: 800px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Tarjeta de estado */
.scfv-status-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

/* Iconos de estado */
.scfv-status-icon {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.scfv-status-loading .scfv-status-icon {
    background: #e9f5ff;
    color: #0073aa;
}

.scfv-status-success .scfv-status-icon {
    background: #e8f7ed;
    color: #0f9d58;
}

.scfv-status-error .scfv-status-icon {
    background: #fef0f0;
    color: #ea4335;
}

/* Contenido de estado */
.scfv-status-content {
    flex: 1;
}

.scfv-status-content h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.scfv-status-message {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 10px 0;
    color: #555;
}

.scfv-status-description {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Estados específicos */
.scfv-status-loading {
    border-left: 4px solid #0073aa;
}

.scfv-status-success {
    border-left: 4px solid #0f9d58;
}

.scfv-status-error {
    border-left: 4px solid #ea4335;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.scfv-precheckout-success,
.scfv-precheckout-error {
    animation: fadeIn 0.4s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .scfv-status-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .scfv-status-icon {
        margin: 0 auto;
    }
    
    .scfv-status-content h3 {
        font-size: 20px;
    }
}
