table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
}


.scrollbar {
    margin-left: 30px;
    float: left;
    height: 500px;
    width: 100%;
    background: #F5F5F5;
    overflow-y: scroll;
    margin-bottom: 25px;
}

.force-overflow {
    min-height: 450px;
}

#wrapper {
    text-align: center;
    width: 100%;
    margin: auto;
}


h1 {
    text-align: center;
    font-family: "Times New Roman", Times, serif;
}
.container {
    margin-left: 20px;
    margin: 0 auto;
    width: 80%;
}
.download-button {
    background-color: #007bff; 
    color: #fff;
    margin-top: 30px;
    padding: 10px ;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 65px;
    right: 5px;
    z-index: 1;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.filter-container {
    position: relative;
    display: inline-block;
}

.filter-button {
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #007bff;
    color: #fff;
}

.filter-container:hover .dropdown-content {
    display: block;
}

.italic-text {
    font-style: italic;
}
.left-aligned {
    text-align: left;
}
.right-aligned {
    text-align: right;
}

.logout-link {
    margin-top: 150px;
    margin-right: 10px;
    text-decoration: none; 
    color: #f7f3f3; 
    /* font-weight: bold; */
}

.username-container {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #f8dc05;
    font-size: 18px;
    /* font-weight: bold; */
}
.username-container p {
    margin-bottom: -27px;
    margin-left: 95px;
}

.company-container {
    margin-top: 25px; 
    font-family: Arial, sans-serif; 
    font-size: 14px; 
    color: #dfdcdc;
}

