/* Стили для уведомлений */
.lel_notification {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    padding: 6px 24px;

    /*
    background: var(--surface-color);
    color: var(--text-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
*/

    background: var(--primary-color);
    color: var(--text-on-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);

    z-index: 20000;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.2);*/
    border: 1px solid #ffffff;
    max-width: 90%;
    min-width: 280px;
    opacity: 0;
}

.lel_notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.lel_notification.hide {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
}


/*
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-on-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

*/

.lel_notification-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.lel_notification.like .lel_notification-icon {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.lel_notification.dislike .notification-icon {
    background: linear-gradient(135deg, #757575, #9e9e9e);
    color: white;
}

.lel_notification.skip .lel_notification-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
}

.lel_notification.market .lel_notification-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
}


.lel_notification-content {
    flex: 1;
    font-weight: 500;
}

.lel_notification-close {
    background: none;
    border: none;
    /* color: var(--text-secondary); */
    color: var(--surface-color);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lel_notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    /*color: var(--text-primary);*/
    color: var(--surface-color);
}

/* Анимации для уведомлений */
@keyframes lel_notification-slideIn {
    from {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes lel_notification-slideOut {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
}










/* Стили для уведомлений Технические */
.lel_notification-tech {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-30px);
    padding: 16px 24px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    z-index: 20000;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    border: 1px solid #ffffff;
    max-width: 90%;
    min-width: 280px;
    opacity: 0;
    pointer-events: none;
}
.lel_notification-tech.show {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.lel_notification-tech.hide {
    transform: translate(-50%, -50%) translateY(30px);
    opacity: 0;
    pointer-events: none;
}
.lel_notification-tech.error {
    background: #f44336;
}
.lel_notification-tech.success {
    background: #4caf50;
}
.lel_notification-tech.warning {
    background: #ff9800;
}
.lel_notification-tech.info {
    background: #2196f3;
}
.lel_notification-tech-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}
.lel_notification-tech-content {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}
.lel_notification-tech-close {
    background: none;
    border: none;
    color: var(--text-on-primary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lel_notification-tech-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
