html {
    height: 100%;
}
body {
    margin: 0px;
    height: 100%;
}
.header {
    background-color: white;
    color: black;
    padding: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid lightgray;
}
.headerInner {
    width: 33.3%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer {
    background-color: white;
    color: black;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid lightgray;
    width: 100%;
}

/* Style for the logo image */
.logo {
    width: 35px;
    height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Style for the menu */
.menu {
    list-style: none;
    display: flex;
}

/* Style for menu items */
.menu li {
    margin-right: 15px;
}

/* Style for logout button */
.logout-button {
    background-color: gray;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}
p {
    margin: 0px;
}
.txtHeader {
    font-size: 15px;
    font-weight: bold;
}
.txtFooter {
    margin: 10px;
    font-size: 13px;
}
.mainSection{
    display: flex;
    width: 100%;
    height: fit-content;
    min-height: 100%;
}
.divCategory {
    width: 150px;
    background-color: lightgray;
}
.divContens {
    width: 100%;
    height: fit-content;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
}
.divDisplayDate{
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.divTopSection {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}
.divSearch{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
}
.divCSV{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 20%;
}
.txtSearchTitle{
    font-size: 13px;
    margin-right: 5px;
    font-weight: bold;
}
.txtSearch {
    font-size: 13px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 2px;
    width: 60%;
    margin: 0px 10px;
}
.btnSearch {
    background-color: black;
    border-radius: 3px;
    color: white;
    font-size: 13px;
    padding: 8px 20px;
    border: 0px;
    margin-left: 5px;
}
.btnCSVDownload {
    background-color: black;
    border-radius: 3px;
    color: white;
    font-size: 13px;
    padding: 8px 20px;
    border: 0px;
    margin-left: 5px;
}
.divContentsTitle {
    display: flex;
    align-items: center;
}
.txtContentsTitle {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

/* modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: start;
}
.modal-content {
    background-color: #f4f4f4;
    width: 90%;
    height: fit-content;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
    animation-name: modalopen;
    animation-duration: 1s;
    margin-top: 50px;
    margin-bottom: 50px;
}
.modal-header {
    background: black;
    padding: 3px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-body {
    padding: 10px 10px;
    background-color: white;
}
.modalClose{
    font-size: 20px;
    color: white;
}
.modal-contents {
    width: 100%;
    align-items: center;   
    justify-content: flex-start; 
    margin: 10px 0px 10px 0px;
}
/*  */