body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 60px; /* Adds space so the content isn't hidden behind the fixed title bar */
}

/* Title Bar */
.title-bar {
    background-color: #2898f1; /* 2c3e50 */
    color: white;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed; /* Fixes the title bar to the top */
    top: 0;
    left: 0;
    width: 100%; /* Ensures the title bar spans the full width */
    font-size: 24px;
    font-weight: bold;
    z-index: 999; /* Makes sure the title bar stays on top of other elements */
}

/* Home Icon on the left */
.home-icon {
    font-size: 40px;
    cursor: pointer;
    color: #0e2f56;
    text-decoration: none;
    position: absolute;
    left: 15px; /* Positioned to the left */
    margin-bottom: 8px;
    z-index: 1000; /* Makes sure the title bar stays on top of other elements */
}

/* Container for the icon in the top right corner */
.icon-container {
    position: fixed;
    top: 12px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #0e2f56; /* 3498db */
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
z-index: 1000; /* Makes sure the title bar stays on top of other elements */
}

/* Pop-up menu */
.popup-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 150px;
}

.popup-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popup-menu li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.popup-menu li:hover {
    background-color: #f0f0f0;
}

/* Sample content to show scrolling */
.content {
    padding: 20px;
}

.content p {
    margin-bottom: 20px;
}