body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f4f4f4;
    color: #666;
}

br {
    user-select: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c2c2c; /* Set your desired background color */
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    width: 500px;
    text-align: center;
}

.company-name a {
    text-decoration: none;
    color: white;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 50px;
    gap: 10px;
}

.main-nav li {
    margin-right: 20px;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.main-nav a:hover {
    text-decoration: underline;
}

.company-info {
    display: flex;
    align-items: center;
}

.company-logo img {
    height: 40px; /* Adjust the height of the logo as needed */
    margin-left: 100px; /* Add some spacing between the logo and company name */
}

.company-name a {
    text-decoration: none;
    color: inherit;
    font-size: 24px; /* Adjust the font size as needed */
}


.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50px;
    display: block;
    background-color: #2c2c2c;
    color: white;
    transition: width 0.3s;
    overflow-x: visible; /* Allow horizontal overflow */
    overflow-y: auto;    /* Enable vertical scrolling if needed */
}



.sidebar.expanded {
    width: 250px;
    margin-right: 10px;
    overflow-y: auto; /* Enable vertical scrolling when sidebar is expanded */
}

/* Hide the scrollbar while still allowing scrolling */
.sidebar.expanded::-webkit-scrollbar {
    width: 0.5em;
}

.sidebar.expanded::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.sidebar-content {
    display: none;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
}

.sidebar.expanded .sidebar-content {
    display: block;
}

.sidebar-toggle {
    cursor: pointer;
    position: relative;
    top: 50px;
    font-size: 20px;
    text-align: center;
    margin: auto;
}

#sidebar-title {
    font-size: 26px;
    color: white;
    text-decoration: underline;
    margin-top: 50px;
}

#sidebar-titl p {
    padding: 0;
    margin: 0;
}

#sidebar-title p {
    font-size: 10px;
    text-decoration: none;
}

#sidebar-a {
    text-align: center;
    margin: auto;
    margin-top: 50px;
}

#sidebar-a a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

#sidebar-a a:hover {
    text-decoration: underline;
}

#sidebar-a p {
    text-decoration: underline;
    color: white;
    font-size: 20px;
}

.welcome {
    text-align: center;
    float: right;
    display: block;
    background-color: #2c2c2c;
    color: white;
    margin-top: 20px;
    margin-right: 20px;
    padding: 10px;
    border-radius: 20px;
}

#currentDate {
    font-size: 14px;
    color: white;
}

.date-time p {
    font-size: 18px;
    text-decoration: underline;
}