        /* Global Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body Styles */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f7f7f7;
            color: #333;
            margin: 0;
        }

        /* Global Scrollbar Styles */
        ::-webkit-scrollbar {
            width: 3px; /* Vertical scrollbar width */
            height: 3px; /* Horizontal scrollbar height */
        }

        /* Vertical Scrollbar */
        ::-webkit-scrollbar:vertical {
            width: 3px; /* Adjusts the width of the vertical scrollbar */
        }

        /* Horizontal Scrollbar */
        ::-webkit-scrollbar:horizontal {
            height: 3px; /* Adjusts the height of the horizontal scrollbar */
        }

        /* Scrollbar Track (the background of the scrollbar) */
        ::-webkit-scrollbar-track {
            background: #000000; /* Light background color for the scrollbar track */
            border-radius: 10px;  /* Rounded corners for the scrollbar track */
        }

        /* Scrollbar Thumb (the draggable part of the scrollbar) */
        ::-webkit-scrollbar-thumb {
            background: #7d6b0d; /* Darker color for the scrollbar thumb */
            border-radius: 10px; /* Rounded corners for the scrollbar thumb */
        }

        /* Hover state for the scrollbar thumb */
        ::-webkit-scrollbar-thumb:hover {
            background: #555; /* Darker shade on hover */
        }

        /* Optionally add styles for when the scrollbar is active */
        ::-webkit-scrollbar:active {
            background: #555;
        }

        /* Navbar Styles */
        .navbar {
            background-color: #096171; /* Teal color for the navbar */
            padding: 8px 16px; /* Reduced height */
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar .logo {
            display: flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 600;
            color: white;
        }

        .navbar .logo img {
            height: 35px; /* Reduced size */
            width: 35px;
            object-fit: cover;
            margin-right: 8px;
            border: 2px solid #ffffff;
            border-radius: 50%;
        }

        .navbar .brand-name {
            letter-spacing: 1px;
            color: #ffd000;
        }

        /* Navbar Menu */
        .navbar-nav {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .navbar-nav a {
            color: #59ced1;
            text-decoration: none;
            font-size: 0.85rem; /* Reduced font size */
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 2px solid transparent;
        }

        .navbar-nav a i {
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .navbar-nav a:hover {
            background-color: #004d4f;
            transform: scale(1.05);
            border: 2px solid #fff;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 70px;
            background-color: #096171;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            flex-direction: column;
            border-radius: 6px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
        }

        .dropdown-content a {
            padding: 8px 12px;
            font-size: 0.85rem;
            color: white;
            text-decoration: none;
            display: flex;
            flex-direction: row;      /* Align icon and text in a row */
            align-items: center;      /* Vertically center the items */
            gap: 8px;                 /* Space between icon and text */
            justify-content: flex-start; /* Align the content to the left */
        }

        .dropdown-content a i {
            font-size: 1rem;
        }

        .dropdown-content a:hover {
            background-color: #004d4f;
        }

        .dropdown.open .dropdown-content {
            display: block;
            opacity: 1;
            visibility: visible;
        }

        /* Menu Icon for Mobile */
        .menu-toggle {
            display: none;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .navbar-nav {
                display: none;
                background-color: #096171;
                flex-direction: column;
                width: 100%;
                z-index: 10000;
                position: absolute;
                top: 80px;
                right: 0;
                width: 200px;
                height: calc(100vh - 100px);
                overflow: auto;
                padding: 12px;
                border-radius: 8px;
                box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
            }

            .menu-toggle {
                display: block;
                font-size: 1.8rem;
                color: white;
            }

            .dropdown {
                width: 100%;
            }

            .dropdown-content {
                position: static;
                background-color: #032226;
                min-width: 100%;
                display: none;
                opacity: 0;
                visibility: hidden;
                z-index: 1050;
            }

            .dropdown.open .dropdown-content {
                display: block;
                opacity: 1;
                visibility: visible;
            }

            .navbar-nav.open {
                display: flex;
            }

            .navbar-nav a {
                font-size: 0.85rem;
                padding: 10px;
                margin-bottom: 6px;
                font-weight: 600;
            }

            .navbar-nav a i {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 8px 12px;
            }

            .navbar-nav a {
                padding-left: 8px;
                font-size: 0.75rem;
            }

            .navbar .logo {
                font-size: 1rem;
            }

            .navbar-nav a i {
                font-size: 1.1rem;
            }

            .menu-toggle {
                font-size: 2rem;
            }
        }
