/* Ruta: /assets/css/custom-notification.css */

.custom-notification-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-notification-backdrop.visible {
    opacity: 1;
    visibility: visible;
}

.custom-notification-modal {
    background: rgba(20, 20, 50, 0.6);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 246, 255, 0.2);
    padding: 2rem;
    width: 90%;
    max-width: 450px;
    text-align: center;
    color: #e0e0ff;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-notification-backdrop.visible .custom-notification-modal {
    transform: scale(1);
}

.notification-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--futuristic-primary, #00f6ff);
    box-shadow: 0 0 15px var(--futuristic-primary, #00f6ff);
    margin-bottom: 1.5rem;
}

#notification-title {
    font-size: 1.8rem;
    color: var(--futuristic-primary, #00f6ff);
    text-shadow: 0 0 10px var(--futuristic-primary, #00f6ff);
    margin: 0 0 0.5rem 0;
}

#notification-message {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.notification-progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: rgba(0, 246, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.notification-progress-bar {
    height: 100%;
    width: 100%;
    background: var(--futuristic-primary, #00f6ff);
    border-radius: 4px;
    animation: countdown 5s linear forwards;
}

@keyframes countdown {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}