/* Estilos para el Modal de Alerta Custom Premium */

.modal-overlay.dynamic-alert {
    z-index: 11000; /* Por encima de otros modales */
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-alert-modal {
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(20px);
    border-left: 5px solid #ff4655;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 70, 85, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: alertSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.custom-alert-modal::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, transparent 50%, rgba(255, 70, 85, 0.1) 50%);
}

.custom-alert-title {
    color: #ff4655;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-alert-content {
    color: #ece8e1;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.custom-alert-button {
    align-self: flex-end;
    background: #ff4655;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.custom-alert-button:hover {
    background: #ff5e6a;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.4);
}

.custom-alert-button:active {
    transform: scale(0.95);
}
