/* Простой колокольчик уведомлений */
.simple-notification-bell {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    border-radius: 50% !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4) !important;
    z-index: 2147483647 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .simple-notification-bell {
        right: 15px !important;
        bottom: 80px !important;
        width: 50px !important;
        height: 50px !important;
        position: fixed !important;
        z-index: 2147483647 !important;
    }
}

.simple-notification-bell:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

.simple-notification-bell svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Счетчик непрочитанных */
.notification-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Dropdown уведомлений */
.notification-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: #1f2937;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #374151;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

/* Мобильная версия dropdown */
@media (max-width: 768px) {
    .notification-dropdown {
        position: fixed !important;
        width: calc(100vw - 32px) !important;
        right: 16px !important;
        left: auto !important;
        bottom: 80px !important;
        top: auto !important;
        max-width: 320px !important;
        min-width: 280px !important;
        transform-origin: bottom right !important;
    }
}

.notification-dropdown.show {
    display: block;
}

.notification-dropdown .header {
    padding: 16px;
    border-bottom: 1px solid #374151;
    color: white;
    font-weight: 600;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid #374151;
    color: #d1d5db;
    font-size: 14px;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item .time {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 4px;
}

.no-notifications {
    padding: 20px;
    text-align: center;
    color: #9ca3af;
    font-style: italic;
}