.notification-box {
    position: relative;
}

.notification-bell {
    position: relative;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.notification-bell:hover {
    background: rgba(255, 255, 255, 0.1);
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    padding: 0 4px;
}

.notification-badge.is-zero {
    background: #6b7280;
}

.notification-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 340px;
    max-height: 420px;
    overflow: hidden;
    border: 1px solid #d9dee5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
    z-index: 1200;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #edf0f4;
    font-weight: 600;
}

.notification-header button {
    border: 0;
    background: transparent;
    color: #54b848;
    font-size: 12px;
}

.notification-list {
    max-height: 360px;
    overflow-y: auto;
}

.notification-item {
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f2f6;
}

.notification-item.unread {
    background: #f4fbef;
}

.notification-item:hover {
    background: #f7f9fc;
}

.notification-msg {
    color: #1f2937;
    font-size: 13px;
}

.notification-date {
    color: #6b7280;
    font-size: 11px;
}

.notification-empty {
    padding: 18px 14px;
    color: #6b7280;
    font-size: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.notification-empty-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.notification-empty-title {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
}

.notification-empty-text {
    font-size: 12px;
    color: #6b7280;
}
