/* Notifications badge styles */
.notifications-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 1rem;
    color: inherit;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.notifications-link:hover {
    opacity: 0.7;
}

.notification-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Notifications page styles */
.notifications-page {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.notifications-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 32px 0;
    color: #000000;
}

.notifications-actions {
    margin-bottom: 24px;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notification-item {
    background-color: #ffffff;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.notification-item.unread {
    background-color: #f8f9fa;
    border-width: 3px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000000;
}

.notification-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin: 8px 0;
}

.notification-date {
    font-size: 16px;
    color: #666666;
    margin-top: 12px;
}

.mark-read-form {
    flex-shrink: 0;
}

.no-notifications {
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    color: #666666;
}

