body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f4f4f4;
    overflow-y: scroll;
}

.doc-title {
    color: #333;
}

br {
    user-select: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c2c2c;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    margin-left: 75px;
}

.company-name a {
    text-decoration: none;
    color: white;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 75px;
    gap: 10px;
}

.main-nav li {
    margin-left: 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; 
    margin-left: 100px;
}

.company-name a {
    text-decoration: none;
    color: inherit;
    font-size: 24px;
}


.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; 
    overflow-y: auto; 
    margin-right: 75px;
}

.sidebar.expanded {
    width: 250px;
    margin-right: 10px;
    overflow-y: auto; 
}

.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;
}

#sidebar-title 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: 18px;
}

.data {
    display: none;
}

#return a {
    color: #007bff;
    text-decoration: underline;
}

#return {
    margin-top: 5px;
    margin-left: 75px;
}

#IDWN {
    margin: auto;
    text-align: center;
    display: block;
    background-color: white;
    border: solid black 1px;
    border-radius: 20px;
    width: 250px;
    height: auto;
    margin-top: 10px;
}

#IDWN a {
    display: block;
    width: 175px;
    background-color: #007bff;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    margin: auto;
    color: white;
}

#IDWN a:hover {
    background-color: #0056b3;
}

#IDWN-title {
    padding: 5px;
    font-size: 22px;
    text-decoration: underline;
}

.main-body {
    margin-left: 75px;
    margin-right: 25px;
    margin-top: 15px;
}

.settings{
    display: flex;
    width: 30%;
    border: solid black 1px;
    background-color: white;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    padding: 0.5%;
    margin: auto;
}

#pass {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: solid black 1px;
    background-color: white;
    border-radius: 20px;
}