/* Styles for the top bar */
        #top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px; /* Adjusted height for two lines */
            background-color: orange; /* Orange background */
            color: white;
            display: flex;
            flex-direction: column; /* Stack items vertically */
            align-items: center;
            justify-content: center;
            z-index: 1000;
            font-family: 'Arial', sans-serif; /* Sans-serif font */
            font-weight: bold; /* Thick font */
            font-size: 18px; /* Adjust font size if needed */
            transform: translateY(-100%); /* Initially hidden */
            transition: transform 0.3s ease;
            padding: 5px; /* Add some padding */
            box-sizing: border-box; /* Include padding in height */
        }

        /* Show the top bar when the checkbox is checked */
        #toggle-bar:checked + #top-bar {
            transform: translateY(0);
        }

        /* Push down the main content when the top bar is visible */
        #toggle-bar:checked ~ #main-content {
            margin-top: 70px; /* Same as the height of the top bar */
        }

        #top-bar a {
            color: white; /* Link color */
            font-weight: bold; /* Bold for emphasis */
        }
