.notifications-dropdown-container {
    position: relative;
}

.notifications-trigger {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.notifications-trigger:hover,
.notifications-trigger:focus {
    color: #fff;
    opacity: 0.85;
}

.notifications-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.notifications-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    width: 320px;
    max-width: 90vw;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 1000;
    overflow: hidden;
}

.notifications-dropdown-header {
    padding: 12px 15px 0;
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.notifications-dropdown-divider {
    margin: 10px 0 0;
    border: 0;
    border-top: 1px solid #333;
}

.notifications-dropdown-list {
    max-height: 360px;
    overflow-y: auto;
}

.notifications-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    transition: background 0.15s ease;
}

.notifications-item:last-child {
    border-bottom: none;
}

.notifications-item:hover {
    background: #252525;
    color: #fff;
}

.notifications-item-pfp {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.notifications-item-body {
    min-width: 0;
}

.notifications-item-message {
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
}

.notifications-item-time {
    font-size: 0.75rem;
    color: #9aa0a6;
    margin-top: 4px;
}

.notifications-empty {
    padding: 16px 15px;
    color: #9aa0a6;
    font-size: 0.9rem;
    text-align: center;
}
