        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            margin: 0;
            padding: 0;
            height: auto;
            min-height: 100%;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
            padding-top: 120px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .photos-grid {
            display: block;
            margin-bottom: 3rem;
            width: 1200px;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
/* Theme variables for Railhub Pictures */
:root {
    /* Light theme variables */
    --background-color: #f8f8f8;
    --text-color: #333;
    --secondary-text: #666;
    --card-background: #fff;
    --header-background: #fff;
    --border-color: #eee;
    --shadow-color: rgba(0,0,0,0.08);
    --hover-shadow: rgba(0,0,0,0.12);
    --button-background: #444;
    --button-text: #fff;
    --button-border: transparent;
    --section-alt-background: #f5f5f5;
    --input-background: #f5f5f5;
    --input-border: #eee;
    --card-bg: #ffffff;
    --footer-bg: #f8f8f8;
    --footer-text: #666;
    --accent-color: #4a7dff;
    --nav-text: #333;
    --nav-active: #333;
    --nav-hover: #000;
    --search-background: #f5f5f5;
    --quick-find-bg: #f5f5f5;
    --major-railroads-bg: #f8f8f8;
    --category-bg: #f5f5f5;
    --category-border: #e5e5e5;

    /* Dark theme variables */
    --background-color: #121212;
    --text-color: #e9ecef;
    --secondary-text: #adb5bd;
    --border-color: #2d3238;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --card-background: #1e1e1e;
    --item-hover-bg: rgba(255, 255, 255, 0.05);
    --active-item-bg: rgba(74, 125, 255, 0.1);
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Card styling */

/* Links and buttons */
a {
    color: var(--accent-color);
}

button {
    background-color: var(--button-background);
    color: var(--button-text);
    border: 1px solid var(--button-border);
    box-shadow: 0 1px 3px var(--shadow-color);
}

/* Input fields */
input {
    background-color: var(--input-background);
    border-color: var(--input-border);
    color: var(--text-color);
}

/* Sections and containers */

/* Header elements */
header {
    background-color: var(--header-background);
    border-bottom-color: var(--border-color);
}

header a {
    color: var(--nav-text);
}

header a:hover {
    color: var(--nav-hover);
}

/* Navigation */
nav a {
    color: var(--nav-text);
}

nav a:hover {
    color: var(--nav-hover);
}

/* Transitions for smooth theme changes */
body, a, button, input, header, div, span, p, h1, h2, h3 {
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme toggle button styling */

/* Only show moon icon by default */

/* Basic transitions for interactive elements */
a, button, input {
    transition: background-color 0.2s ease, color 0.2s ease;
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #ffffff;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

/* Header and Navigation */
header {
  background-color: #ffffff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

main {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  max-width: 1800px;
  margin: 0 auto;
  min-height: 930x; /* or desired minimum height */

}

/* Remove bullet points from all lists */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Dropdown animation */

/* Section spacing improvements */
h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
}

/* Grid section titles */
div h3 {
  margin-bottom: 0.75rem;
  margin-top: 0;
}

/* Additional utility classes to match your HTML */


/* Link styles */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Privacy Policy Specific Styles */
    
    
    .section-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: center;
    }

        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .main-content {
            flex: 1;
            max-width: 1200px;
            margin: -3rem auto 0;
            padding: 0;
            overflow: hidden;
        }
/* Hero Section */

/* Sections */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Photo Grid */

/* Categories */

/* Features */

/* Footer hover effects */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
            margin-top: 120px;
            padding: 2rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .policy-container {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 3rem;
            text-align: left;
            margin-bottom: 2rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }

        h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #444;
            margin: 1.5rem 0 0.75rem;
        }

        p, ul {
            margin-bottom: 1rem;
            color: #444;
        }

        ul {
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .policy-date {
            font-style: italic;
            color: #666;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        a {
            color: #444;
            text-decoration: underline;
        }

        a:hover {
            color: #000;
        }

        .section-intro {
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .policy-toc {
            background: #f5f5f5;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }

        .policy-toc ul {
            list-style-type: none;
            padding-left: 0;
        }

        .policy-toc li {
            margin-bottom: 0.5rem;
        }

        .policy-toc a {
            text-decoration: none;
            color: #444;
        }

        .policy-toc a:hover {
            text-decoration: underline;
            color: #000;
        }

        .highlight-box {
            background: #f8f8f8;
            border-left: 4px solid #444;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* Fix for anchor links with fixed header */
        h2[id] {
            scroll-margin-top: 140px; /* Add extra space to account for fixed header */
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
            margin-top: 120px;
            padding: 2rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .policy-container {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 3rem;
            text-align: left;
            margin-bottom: 2rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }

        h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #444;
            margin: 1.5rem 0 0.75rem;
        }

        p, ul {
            margin-bottom: 1rem;
            color: #444;
        }

        ul {
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .policy-date {
            font-style: italic;
            color: #666;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        a {
            color: #444;
            text-decoration: underline;
        }

        a:hover {
            color: #000;
        }

        .section-intro {
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .policy-toc {
            background: #f5f5f5;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }

        .policy-toc ul {
            list-style-type: none;
            padding-left: 0;
        }

        .policy-toc li {
            margin-bottom: 0.5rem;
        }

        .policy-toc a {
            text-decoration: none;
            color: #444;
        }

        .policy-toc a:hover {
            text-decoration: underline;
            color: #000;
        }

        .highlight-box {
            background: #f8f8f8;
            border-left: 4px solid #444;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* Fix for anchor links with fixed header */
        h2[id] {
            scroll-margin-top: 140px; /* Add extra space to account for fixed header */
        }

		/* ==================== NOTIFICATION STYLES ==================== */
        
/* Notification Container - Main container for the entire notifications page */
.notifications-page {
    background-color: #f8f8f8 !important;
    color: #333 !important;
    padding-top: 60px !important; /* Positions content below fixed header */
}

.notification-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Notification Layout */
.notification-layout {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Main content area - holds all notifications */
.notification-main {
    flex: 3;
    min-height: 500px; /* Ensures consistent height even when empty */
}

/* Sidebar for filters and stats */
.notification-sidebar {
    flex: 1;
    max-width: 300px;
}

/* Notification Card - Container for all notifications */
.notification-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    min-height: 400px; /* Minimum height ensures consistent sizing */
    display: flex;
    flex-direction: column;
}

/* Card header with title and action buttons */
.notification-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
    font-size: 1.25rem;
}

/* Empty state styling when no notifications */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 2rem;
    text-align: center;
}

.empty-state-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-state-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Individual notification items */
.notification-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.notification-item.unread {
    background-color: rgba(74, 125, 255, 0.05);
    border-left: 4px solid #4a7dff;
}

.notification-item.read {
    border-left: 4px solid transparent;
}

.notification-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Notification item components */
.notification-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #4a7dff;
    flex-shrink: 0;
}

.like-icon {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.comment-icon {
    background-color: rgba(74, 125, 255, 0.1);
    color: #4a7dff;
}

.system-icon {
    background-color: rgba(110, 120, 130, 0.1);
    color: #6e7882;
}

.welcome-icon {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.login-icon {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.notification-content {
    flex-grow: 1;
    line-height: 1.6;
}

.notification-message {
    margin-bottom: 0.25rem;
    color: #333;
}

.notification-meta {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.35rem;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* Badge for unread notifications */
.notification-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: #4a7dff;
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 500;
}

/* Filter and actions styling */
.filter-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Quick filters in sidebar */
.quick-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #555;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

.btn-outline.active {
    background-color: #4a7dff;
    border-color: #4a7dff;
    color: #fff;
}

/* Pagination styles */
.pagination-footer {
    padding: 1.25rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    margin-top: auto; /* Push to bottom of card */
}

.pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pagination-item {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-item:hover {
    background-color: #f5f5f5;
}

.pagination-info {
    color: #666;
}

/* Stats list styles */
.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-label {
    color: #666;
}

.stats-value {
    font-weight: 600;
    color: #333;
}

/* Sidebar card styling */
.sidebar-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.sidebar-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #333;
}

.sidebar-card-body {
    padding: 1rem 1.25rem;
}

/* Dropdown menus */
.dropdown-menu {
    position: absolute;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1000;
    display: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.dropdown-item.active {
    background-color: rgba(74, 125, 255, 0.1);
    color: #4a7dff;
    font-weight: 500;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 0.5rem 0;
}

/* Fix for the filter dropdowns */
.filter-dropdown {
    position: relative;
    margin-left: 0.5rem;
}

.icon-margin-right {
    margin-right: 4px;
}

/* Sidebar cards */
.sidebar-card {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.sidebar-card-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-color);
}

.sidebar-card-body {
    padding: 1rem;
}

/* Stats list */
.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-label {
    color: var(--secondary-text);
}

.stats-value {
    font-weight: 500;
    color: var(--text-color);
}

/* Filter dropdowns */
.filter-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.875rem;
    text-align: left;
    list-style: none;
    background-color: var(--card-background);
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    color: var(--text-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--text-color);
    text-decoration: none;
    background-color: var(--item-hover-bg, rgba(0, 0, 0, 0.05));
}

.dropdown-item.active {
    color: var(--accent-color);
    font-weight: 500;
    background-color: var(--active-item-bg, rgba(74, 125, 255, 0.05));
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.empty-state-text {
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

/* Notification highlight animation */
.notification-highlight {
    animation: highlight 1s ease;
}

@keyframes highlight {
    0% {
        background-color: rgba(74, 125, 255, 0.2);
    }
    100% {
        background-color: transparent;
    }
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.25rem solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Action button effects */
.btn-action {
    background-color: transparent;
    color: var(--secondary-text);
    padding: 0.25rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.btn-action:hover {
    background-color: var(--item-hover-bg, rgba(0,0,0,0.05));
    color: var(--accent-color);
}

.btn-action-pulse {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Additional utility classes needed for notifications */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-grow-1 {
    flex-grow: 1;
}

.text-center {
    text-align: center;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

.d-none {
    display: none;
}

/* Button styles for notifications */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Inter", sans-serif;
}

.btn-primary {
    background-color: var(--button-background);
    color: var(--button-text);
    border: 1px solid transparent;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
}

/* Responsive layout for notifications */
@media (max-width: 768px) {
    .notification-layout {
        flex-direction: column;
    }
    
    .notification-main {
        width: 100%;
    }
    
    .notification-sidebar {
        width: 100%;
        max-width: none;
        margin-top: 1.5rem;
    }
}

/* Footer positioning and styling for all pages */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main, section {
    flex: 1 0 auto;
}

footer, .site-footer {
    flex-shrink: 0;
    margin-top: 3rem; /* Spacing above footer */
}

/* Special styles for notifications page - force light mode */
.notifications-page {
    background-color: #f8f8f8 !important;
    color: #333 !important;
    padding-top: 60px !important; /* Reduced padding to position content closer to header */
}

.notification-container {
    max-width: 1800px !important;
    margin: 0 auto;
    padding: 0 2rem;
}

.filter-dropdown {
    margin-left: 0.5rem;
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

.icon-margin-right {
    margin-right: 4px;
}

.site-header {
    padding: 1rem 0;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.notifications-page .notification-card {
    background-color: #fff !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1) !important;
}

.notifications-page h1 {
    font-size: 1.8rem;
    color: #333 !important;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* Fix links to prevent underline */
.dropdown-item, 
.filter-dropdown button, 
.dropdown-toggle,
.notification-actions a, 
.notification-content a,
.sidebar-card a, 
.sidebar-card-body a, 
.btn-action,
.empty-state a {
    text-decoration: none !important;
}

.dropdown-item:hover,
.filter-dropdown button:hover, 
.dropdown-toggle:hover,
.notification-actions a:hover, 
.notification-content a:hover,
.sidebar-card a:hover, 
.sidebar-card-body a:hover,
.btn-action:hover,
.empty-state a:hover {
    text-decoration: none !important;
}

/* Better notification header alignment */
.notification-header {
    padding: 1rem 1.25rem;
    align-items: center;
}

.notification-title {
    margin: 0;
    padding: 0;
}

/* Set proper notification card padding */
.notification-item {
    padding: 1.25rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}