.notification-dropdown .nav-link {
    position: relative;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    cursor: pointer;
}

.notification-dropdown .nav-link:hover {
    color: #fff;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown .nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    cursor: pointer;
}

.dropdown .nav-link:hover {
    color: #fff;
}

.notification-dropdown .dropdown-menu,
.dropdown-menu {
    width: 350px;
    padding: 0;
    border: none;
    background-color: #1a1a1a;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.notification-header h6 {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.notification-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.notification-item.unread {
    background-color: rgba(99, 102, 241, 0.1);
}

.notification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
}

.notification-icon i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.notification-content {
    min-width: 0;
}

.notification-text {
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.9);
}

.notification-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.notification-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    transform: translate(-50%, -50%) !important;
}

.mark-read {
    opacity: 0;
    transition: opacity 0.2s;
    padding: 0.25rem;
    background: none;
    border: none;
    color: #6366f1;
}

.notification-item:hover .mark-read {
    opacity: 1;
}

.notification-footer {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-footer a {
    color: #6366f1;
    font-weight: 500;
}

.btn-link {
    color: #6366f1;
    text-decoration: none;
    padding: 0;
}

.btn-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dropdown-item i {
    width: 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.text-danger {
    color: #ef4444 !important;
}

.text-danger:hover {
    color: #dc2626 !important;
    background-color: rgba(239, 68, 68, 0.1);
}

@media (max-width: 576px) {
    .notification-dropdown .dropdown-menu {
        width: 100vw;
        position: fixed !important;
        top: 56px !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        border-radius: 0;
        height: calc(100vh - 56px);
        max-height: none;
        margin-top: 0;
    }

    .notification-list {
        max-height: calc(100vh - 150px) !important;
    }
} 