/* Notification Toast */
.notification-toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 22, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: top 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    min-width: 300px;
    max-width: 90%;
}

.notification-toast.show {
    top: 20px;
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: var(--primary, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
}

.notif-title {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.notif-message {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.notif-action {
    background: white;
    color: black;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.notif-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1rem;
    margin-left: 5px;
}