/* Modern Professional Theme */
:root {
    /* Updated color scheme */
    --bg-color: #f4f7fa;
    --card-bg: #ffffff;
    --text-color: #2c3e50;
    --border-color: #e9ecef;
    --primary: #4361ee;
    --primary-hover: #3048c4;
    --success: #2dce89;
    --danger: #f5365c;
    --muted: #8898aa;
    --header-bg: #1a237e;
    --sidebar-bg: #ffffff;
    /* Dark theme colors */
    --dark-primary: #121212;
    --dark-secondary: #1E1E1E;
    --dark-tertiary: #2d2d2d;
    --dark-border: #333333;
    --dark-hover: #3a3a3a;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --accent-blue: #1a237e;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: var(--header-bg) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}

/* Tables */
.table {
    color: var(--text-color);
    margin: 0;
}

.table thead th {
    background: rgba(67, 97, 238, 0.05);
    border-top: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--border-color);
}

/* Forms */
.form-control {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.form-control:focus {
    background: var(--card-bg);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .table-responsive {
        border-radius: 12px;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Dark Theme */
body {
    background-color: #1a1c23;
    color: #e4e6eb;
}

/* Cards */
.card {
    background-color: #242631;
    border: 1px solid #2d303a;
}

.card-header {
    background-color: #2d303a !important;
    border-bottom: 1px solid #363a47;
}

/* Tables */
.table {
    color: #e4e6eb;
}

.table-hover tbody tr:hover {
    background-color: #2d303a;
    color: #ffffff;
}

.thead-light th {
    background-color: #2d303a !important;
    color: #e4e6eb !important;
    border-color: #363a47 !important;
}

.table td, .table th {
    border-top: 1px solid #363a47;
}

/* Navbar */
.navbar {
    background-color: #242631 !important;
}

/* Forms */
.form-control {
    background-color: #1a1c23;
    border: 1px solid #363a47;
    color: #e4e6eb;
}

.form-control:focus {
    background-color: #242631;
    border-color: #4a5263;
    color: #e4e6eb;
}

/* Modals */
.modal-content {
    background-color: #242631;
    border: 1px solid #363a47;
}

.modal-header {
    border-bottom: 1px solid #363a47;
}

.modal-footer {
    border-top: 1px solid #363a47;
}

/* Buttons */
.btn-secondary {
    background-color: #363a47;
    border-color: #363a47;
}

.btn-secondary:hover {
    background-color: #4a5263;
    border-color: #4a5263;
}

/* Links */
a {
    color: #5c8ed5;
}

a:hover {
    color: #7ba6e2;
}

/* Pagination */
.page-link {
    background-color: #242631;
    border-color: #363a47;
    color: #e4e6eb;
}

.page-link:hover {
    background-color: #2d303a;
    border-color: #363a47;
    color: #ffffff;
}

.page-item.active .page-link {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Alerts */
.alert-success {
    background-color: #1c4b3c;
    border-color: #2d7b66;
    color: #a3e9d2;
}

.alert-danger {
    background-color: #4b1c1c;
    border-color: #7b2d2d;
    color: #e9a3a3;
}

/* Select boxes */
select option {
    background-color: #1a1c23;
    color: #e4e6eb;
}

/* Custom styles for statistics cards */
.card.bg-primary {
    background-color: #1e3a5f !important;
}

.card.bg-success {
    background-color: #1c4b3c !important;
}

.card.bg-danger {
    background-color: #4b1c1c !important;
}

/* Search box */
.search-box {
    background-color: #1a1c23;
    border: 1px solid #363a47;
}

/* Badges */
.badge-secondary {
    background-color: #363a47;
}

/* Input placeholders */
::placeholder {
    color: #6c757d !important;
    opacity: 0.8;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1c23;
}

::-webkit-scrollbar-thumb {
    background: #363a47;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a5263;
}

/* Restricted Data Styling */
.restricted-data {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background-color: #2d3748;
    border-radius: 4px;
    color: #a0aec0;
    font-size: 0.9em;
}

.restricted-data i {
    margin-right: 6px;
    color: #e53e3e;
}

/* Tooltip for restricted data */
.restricted-data {
    position: relative;
    cursor: help;
}

.restricted-data:hover::after {
    content: 'Only administrators can view this information';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    background-color: #4a5568;
    color: #fff;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

.restricted-data:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #4a5568;
    margin-bottom: -5px;
}

/* Responsive Design & Professional Styling */
.container {
    max-width: 100%;
    padding: 15px;
}

/* Statistics Cards */
.stats-card {
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Table Responsive Design */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.table {
    margin-bottom: 0;
}

.table th {
    white-space: nowrap;
    background-color: #f8f9fa;
}

/* Modal Responsive Design */
.modal-dialog {
    margin: 1rem;
    max-width: 95%;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 800px;
    }
}

/* Form Controls */
.form-control {
    height: calc(2.5rem + 2px);
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: .3rem;
}

/* Buttons */
.btn {
    padding: .375rem 1rem;
    font-size: .9rem;
    border-radius: .3rem;
    transition: all 0.2s;
}

.btn-group {
    flex-wrap: wrap;
    gap: 4px;
}

/* Card Design */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Detail Groups in Modal */
.detail-group {
    margin-bottom: 1.5rem;
}

.detail-group label {
    font-weight: 600;
    color: #6c757d;
    margin-bottom: .5rem;
    display: block;
}

.detail-value {
    font-size: 1rem;
    margin-bottom: 0;
    word-break: break-word;
}

/* Responsive Typography */
@media (max-width: 576px) {
    h1, .h1 { font-size: 1.8rem; }
    h2, .h2 { font-size: 1.6rem; }
    h3, .h3 { font-size: 1.4rem; }
    .table { font-size: 0.9rem; }
    .btn { font-size: 0.85rem; }
}

/* Search Input Styling */
.search-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    padding-right: 40px;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.15);
    border-color: #80bdff;
}

/* Pagination Responsive */
.pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 1.5rem;
}

.page-link {
    padding: .375rem .75rem;
    border-radius: .25rem;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Restricted Data Styling Update */
.restricted-data {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.restricted-data i {
    color: #dc3545;
    margin-right: 8px;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.95);
    transition: transform 0.2s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Status Badge Enhancement */
.badge {
    padding: 0.5em 0.8em;
    font-weight: 500;
    border-radius: 30px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Revert to original styling */
.container {
    padding: 1rem;
}

/* Table styling */
.table-responsive {
    margin-bottom: 1rem;
}

.table th {
    background-color: #f8f9fa;
}

/* Modal styling */
.modal-dialog {
    margin: 1.75rem auto;
}

/* Form Controls */
.form-control {
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
}

/* Buttons */
.btn {
    padding: .375rem .75rem;
}

/* Restricted Data Styling */
.restricted-data {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #6c757d;
}

.restricted-data i {
    margin-right: 6px;
    color: #dc3545;
}

/* Status Badge */
.badge {
    padding: 0.4em 0.6em;
}

/* Container and Layout */
.container {
    max-width: 1140px;
    padding: 15px;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.card-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 10px 10px 0 0 !important;
}

/* Table Styling */
.table-responsive {
    border-radius: 8px;
    margin: -1px;  /* Fix border overlap */
}

.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 15px;
    background-color: #f8f9fa;
}

.table td {
    padding: 12px 15px;
    vertical-align: middle;
}

/* Button Groups */
.btn-group {
    gap: 5px;
}

.btn-group .btn {
    border-radius: 6px !important;
    padding: 0.3rem 0.6rem;
}

/* Modal Styling */
.modal-dialog {
    max-width: 600px;
}

.modal-content {
    border: none;
    border-radius: 12px;
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-body {
    padding: 20px;
}

/* Form Controls */
.form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    height: auto;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    border-color: #4299e1;
}

/* Stats Cards */
.stats-card {
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: transform 0.2s;
}

.stats-card:hover {
    transform: translateY(-2px);
}

.stats-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stats-card p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Search Bar */
.search-wrapper {
    max-width: 400px;
    margin: 0 auto 20px;
}

#searchInput {
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 40px;
}

/* Pagination */
.pagination {
    margin-bottom: 0;
}

.pagination .page-link {
    border: none;
    padding: 8px 16px;
    margin: 0 3px;
    border-radius: 6px;
}

/* Badges */
.badge {
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 20px;
}

/* Restricted Data */
.restricted-data {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.restricted-data i {
    margin-right: 6px;
    color: #dc3545;
}

/* Detail Groups in Modal */
.detail-group {
    margin-bottom: 15px;
}

.detail-group label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
    display: block;
}

.detail-group p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Payment Status in Modal */
#viewPaymentStatus .badge {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

/* Modal Detail Groups */
.detail-group {
    margin-bottom: 1rem;
}

.detail-group label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.detail-group p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Modal Divider */
.modal-body hr {
    margin: 1rem 0;
    border-color: rgba(0,0,0,0.1);
}

/* Pagination Styling to match site design */
.pagination {
    margin: 20px 0;
    gap: 5px;
}

.pagination .page-link {
    color: #fff;
    background-color: #2c3e50;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 600;
    margin: 0 3px;
}

.pagination .page-link:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pagination .page-item.active .page-link {
    background-color: #3498db;
    color: #fff;
    border: none;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

/* Style for prev/next buttons */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    background-color: #3498db;
    color: #fff;
    font-weight: 600;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background-color: #2980b9;
}

/* Disabled state */
.pagination .page-item.disabled .page-link {
    background-color: #465670;
    color: #a0aec0;
    cursor: not-allowed;
}

/* Filter Buttons Styling */
.btn-group .btn {
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-group .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: white;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

/* Active state styling */
.btn-group .btn.btn-primary,
.btn-group .btn.btn-success,
.btn-group .btn.btn-danger {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Notification Styles */
.icon-circle {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-list {
    min-width: 300px;
    max-width: 350px;
}

.dropdown-header {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.75rem 1rem;
    color: white;
}

.dropdown-item {
    white-space: normal;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.notification-count {
    position: absolute;
    transform: scale(0.7);
    transform-origin: top right;
    right: 0.25rem;
    margin-top: -0.25rem;
}

/* Notification Dropdown Styles - Complete Redesign */
.dropdown-list {
    background-color: var(--dark-primary) !important;
    border: 1px solid var(--dark-border) !important;
    min-width: 300px;
    max-width: 350px;
    z-index: 1050;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-list .dropdown-header {
    background: linear-gradient(45deg, var(--dark-tertiary), var(--accent-blue)) !important;
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    font-weight: 600;
}

.notifications-list {
    max-height: 400px;
    overflow-y: auto;
    background-color: var(--dark-primary);
}

.dropdown-list .dropdown-item {
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem;
    background-color: var(--dark-primary) !important;
    transition: all 0.3s ease;
}

.dropdown-list .dropdown-item:hover {
    background-color: var(--dark-secondary) !important;
}

.dropdown-list .dropdown-item.unread {
    background-color: var(--dark-secondary) !important;
    border-left: 3px solid var(--accent-blue);
}

.dropdown-list .dropdown-item:last-child {
    border-bottom: none;
}

#markAllRead {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

#markAllRead:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-blue), var(--dark-tertiary)) !important;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Custom Scrollbar for Notifications */
.notifications-list::-webkit-scrollbar {
    width: 6px;
}

.notifications-list::-webkit-scrollbar-track {
    background: var(--dark-primary);
}

.notifications-list::-webkit-scrollbar-thumb {
    background: var(--dark-tertiary);
    border-radius: 3px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Ensure no transparency */
.dropdown-menu {
    background-color: var(--dark-primary) !important;
}

/* Time text in notifications */
.dropdown-list .small.text-muted {
    color: var(--text-secondary) !important;
    font-size: 0.8rem;
}

/* Notification message text */
.dropdown-list .notification-message {
    color: var(--text-primary);
    margin-top: 0.3rem;
    line-height: 1.4;
}

/* Empty notifications state */
.dropdown-list .dropdown-item.text-center {
    padding: 2rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Modal Styles */
.modal-content {
    background-color: var(--dark-secondary) !important;
    border: 1px solid var(--dark-border) !important;
    color: var(--text-primary);
}

.modal-header {
    background-color: var(--dark-tertiary) !important;
    border-bottom: 1px solid var(--dark-border) !important;
    color: var(--text-primary);
}

.modal-body {
    background-color: var(--dark-secondary);
    color: var(--text-primary);
}

.modal-footer {
    background-color: var(--dark-secondary);
    border-top: 1px solid var(--dark-border) !important;
}

.close {
    color: var(--text-primary) !important;
}

.close:hover {
    color: var(--text-secondary) !important;
}

/* Alert Styles */
.alert {
    background-color: var(--dark-tertiary);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

/* Button Styles */
.btn-secondary {
    background-color: var(--dark-tertiary);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--dark-hover);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
}

.btn-danger {
    background-color: var(--dark-tertiary);
    border: 1px solid #dc3545;
    color: var(--text-primary);
}

.btn-danger:hover {
    background-color: #dc3545;
    color: var(--text-primary);
}

/* Form Control Styles */
.form-control {
    background-color: var(--dark-tertiary) !important;
    border: 1px solid var(--dark-border) !important;
    color: var(--text-primary) !important;
}

.form-control:focus {
    background-color: var(--dark-tertiary);
    border-color: var(--accent-blue) !important;
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}

/* Add these styles for notification items */
.dropdown-item.d-flex {
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.dropdown-item.d-flex:hover {
    background-color: var(--dark-hover);
    color: var(--text-primary);
}

.notifications-list a {
    color: var(--text-primary);
    text-decoration: none;
}

.notifications-list a:hover {
    color: var(--text-primary);
}