<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#fixed-notification-bar {
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 9999;
}

#notification-list {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    width: 300px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.notification-item {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.notification-item.unread {
    font-weight: bold;
}

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

.no-notification {
    text-align: center;
    color: #666;
}

#notification-count {
    color: white !important;
    font-weight: bold;
}

#notification-count[data-count="0"] {
    color: red;
}</pre></body></html>