        body {
            font-family: 'Inter', sans-serif;
            background-color: #f0f2f5;
        }
        /* Custom styles for flash messages */
        .flash-success {
            background-color: #d4edda;
            color: #155724;
            border-color: #c3e6cb;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 0.5rem;
        }
        .flash-error {
            background-color: #f8d7da;
            color: #721c24;
            border-color: #f5c6cb;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 0.5rem;
        }
        .flash-info {
            background-color: #d1ecf1;
            color: #0c5460;
            border-color: #bee5eb;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 0.5rem;
        }
        /* Styles for the suggestion box */
        .suggestions-box {
            position: absolute;
            top: 100%; /* Position below the input */
            left: 0;
            width: 100%; /* Match the width of the input's parent form */
            z-index: 100;
            background-color: white;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-height: 200px;
            overflow-y: auto;
            margin-top: 0.25rem; /* Small gap below the input */
        }
        .suggestion-item {
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-size: 0.875rem;
            color: #4a5568;
        }
        .suggestion-item:hover {
            background-color: #f0f2f5;
            color: #2b6cb0;
        }

        /* CKEditor 4 specific styling adjustments */
        .cke_chrome {
            border-radius: 0.375rem !important; /* Apply rounded corners to the whole editor */
            border: 1px solid #d1d5db !important;
        }
        .cke_editable { /* Class applied to the editable body within the iframe */
            min-height: 200px; /* Ensure content area has min-height */
            padding: 1rem;
            box-sizing: border-box; /* Include padding in height calculation */
        }

        /* Responsive Navbar Styles */
        /* Hide menu items by default on small screens */
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #004d80; /* Darker blue for collapsed menu */
            position: absolute;
            top: 100%;
            left: 0;
            padding-bottom: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-radius: 0 0 8px 8px;
            /* Removed overflow: hidden; */
        }
        .nav-links.active {
            display: flex;
        }
        .nav-links a, .nav-links span, .nav-links form {
            padding: 10px 20px; /* Adjust padding for vertical menu */
            width: 100%; /* Full width for items */
            box-sizing: border-box;
            justify-content: flex-start; /* Align text to left */
        }
        .nav-links form {
            flex-direction: column; /* Stack search input and button */
            align-items: flex-start;
            padding-bottom: 0; /* Adjust for search form spacing */
        }
        .nav-links form input, .nav-links form button {
            width: 100%; /* Full width for search elements */
            margin-bottom: 5px; /* Space between input and button */
        }
        .nav-toggle {
            display: block; /* Show hamburger icon on small screens */
            cursor: pointer;
        }
        /* Hide hamburger and show full menu on medium screens and up */
        @media (min-width: 768px) { /* md breakpoint */
            .nav-links {
                display: flex !important; /* Always show on desktop */
                flex-direction: row;
                position: static; /* Reset position */
                background-color: transparent; /* Reset background */
                box-shadow: none;
                border-radius: 0;
                padding-bottom: 0;
                justify-content: flex-end; /* Align to right */
                flex-grow: 1; /* Allow menu to take available space */
            }
            .nav-links a, .nav-links span, .nav-links form {
                padding: 0; /* Reset padding */
                width: auto; /* Reset width */
                margin-left: 1rem; /* Space between desktop links */
                margin-bottom: 0;
            }
            .nav-links form {
                flex-direction: row; /* Row for desktop search */
                align-items: center;
            }
            .nav-toggle {
                display: none; /* Hide hamburger on desktop */
            }
            .container.nav-expanded {
                flex-direction: row; /* Reset flex direction for desktop */
            }
            /* Dropdown specific styles for desktop */
            .dropdown:hover .dropdown-menu {
                display: block; /* Show on hover */
            }
        }
        /* Adjust global search input width on small screens */
        @media (max-width: 767px) {
            #global-search-input {
                width: 100%;
            }
            .nav-links form button {
                width: auto; /* Allow button to size naturally */
            }
            /* When the main nav menu is active on mobile, dropdown menus should be block by default,
               but can be toggled hidden by JS. Removed !important. */
            .nav-links.active .dropdown-menu {
                display: block; /* Default to block when main nav is active */
                position: static; /* Stack items normally */
                box-shadow: none;
                border: none;
                background-color: transparent;
                padding-left: 1rem; /* Indent dropdown items */
            }
            /* This rule allows JS to hide the dropdown if toggled off */
            .dropdown-menu.hidden {
                display: none;
            }
            .dropdown-menu a {
                padding-left: 2rem; /* Further indent */
            }
        }

        /* Rolling News Bar Styles */
        .news-bar-container {
            background-color: #fefcbf; /* Light yellow background */
            color: #8b5f00; /* Dark yellow text */
            padding: 0.5rem 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            font-size: 0.9rem;
            border-bottom: 1px solid #fde68a;
            box-shadow: inset 0 -1px 2px rgba(0,0,0,0.05);
        }

        .news-bar-content {
            display: inline-block;
            padding-left: 100%; /* Start off-screen to the right */
            animation: marquee 20s linear infinite; /* Adjust duration as needed */
        }

        .news-item {
            display: inline-block;
            margin-right: 3rem; /* Space between news items */
            font-weight: 500;
            direction:rtl;
        }

        .news-item:last-child {
            margin-right: 0; /* No margin after the last item */
        }

        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }
