/* ESTILOS DEL BANNER GLOBAL DE PAGO PENDIENTE */

#banner-pago-pendiente {
    width: 100%;
    position: relative;
    z-index: 9999;
}

.banner-global-alerta {
    background-color: #fefce8; /* Crema suave */
    border-bottom: 2px solid #D4AF37; /* Oro */
    color: #7A1921; /* Carmesí */
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.banner-contenido {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.banner-texto {
    margin: 0;
    line-height: 1.4;
}

.banner-timer {
    display: inline-block;
    margin-left: 10px;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    font-family: monospace;
}

.banner-acciones {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-banner-link {
    background: #7A1921;
    color: white;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-banner-link:hover {
    background: #bd171b;
    transform: translateY(-1px);
}

.btn-banner-anular {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #6B7280;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-banner-anular:hover {
    color: #ef4444;
    border-color: #fecaca;
    background: #fef2f2;
}

.btn-banner-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 5px;
}

.btn-banner-close:hover {
    color: #4b5563;
}

/* Ajustes para móvil */
@media (max-width: 768px) {
    .banner-global-alerta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .banner-contenido {
        justify-content: center;
    }
    .banner-acciones {
        width: 100%;
        justify-content: center;
    }
    .banner-timer {
        display: block;
        margin: 5px 0 0 0;
    }
}
