/* Notifications Page Styles */
.notifications-page {
    /* Uses global mesh background */
}

/* We should ensure the container pushes down past the general fixed navbar if they are using one, but I'll add top padding just in case. */
.notifications-container {
    padding-top: 120px;
    padding-bottom: 64px;
}

/* Notifications Header Card */
.notifications-header-card {
    background-color: var(--dark-green);
    color: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
}

.notifications-pre-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-family: inherit;
}

.notifications-header-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    max-width: 800px;
}

/* Main Notification Feed Container */
.notifications-feed-container {
    background-color: #fbfbf6; /* Matching the sidebar light color */
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.feed-pre-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feed-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--text-main);
}

/* Notification Items List */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notification-item {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.notification-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 24px;
}

.notification-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.notification-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.notification-action {
    flex-shrink: 0;
}

.btn-status {
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--text-main);
    transition: all 0.2s;
}

.btn-status:hover {
    background-color: #f5f5f5;
}

.btn-status.read {
    background-color: #f5f5f5;
    color: var(--text-muted);
    border-color: #ebebeb;
}

@media (max-width: 768px) {
    .notifications-header-card,
    .notifications-feed-container {
        padding: 32px 24px;
    }
    
    .notification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
}
