/* notification.css */

.notification-section {
    padding: 10px 15px;
    overflow-y: auto;
    flex-grow: 1;
    padding-bottom: 80px; /* Clear fixed nav */
}

#notification-list-container {
    max-width: 600px;
    margin: 0 auto;
}

.notification-item {
    background: #2a2a2a;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #333;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.notification-item.unread {
    background: #362020; /* Darker red tint for unread */
    border-left-color: var(--primary-color);
    font-weight: bold;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: #888;
    margin-bottom: 5px;
}
.notification-source {
    color: var(--secondary-color);
}
.notification-time {
    font-size: 0.75em;
}
.notification-content {
    font-size: 1em;
    color: var(--text-color);
    white-space: pre-wrap; /* Preserve formatting */
}


/* --- UNREAD DOT STYLING --- */
.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 10;
}
