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;
}
.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;
    min-height: fit-content;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
}
.divCategoryDashboard {
    background-color: black;
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.txtCategory {
    color: white;
    font-size: 13px;
    font-weight: bold;
}
.divCategoryList {
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divCategoryTitle {
    font-size: 13px;
    border-width: 0px;
    background-color: lightgray;
}
.divSection{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.txtSection{
    width: 10%;
    font-size: 13px;
    font-weight: bold;
}
.txtInputSection {
    width: 85%;
    font-size: 13px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 2px;
    margin-left: 5px;
}
.txtInputContens {
    width: 85%;
    height: 300px;
    font-size: 13px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 2px;
    margin-left: 5px;
}
.btnSubmit {
    background-color: black;
    border-radius: 5px;
    color: white;
    font-size: 13px;
    padding: 8px 20px;
    border: 0px;
    margin-top: 10px;
    width: 50%;
}
.divContentsTitle {
    display: flex;
    align-items: center;
}
.divSendTargetType {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.txtContentsTitle {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
.userListTable {
    margin-top: 30px;
    width: 100%;
    border: 1px solid black;
}
.divListCol {
    width: 100%;
    background-color: black;
    display: flex;
}
.divListData {
    width: 100%;
    height: 380px;
    /* overflow: scroll; */
}
.divCehck {
    width: 10%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    border-bottom: 1px solid gray;
}
.divName {
    width: 30%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    border-bottom: 1px solid gray;
}
.divMail {
    width: 30%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    border-bottom: 1px solid gray;
}
.divWorkPlace {
    width: 30%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    border-bottom: 1px solid gray;
}
.txtListTitle {
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    padding: 10px 0px;
}
.txtListData {
    font-size: 15px;
    padding: 7px 0px;
    text-align: center;
}
.divListDataInner {
    padding: 3px 0px;
    display: flex; 
    width: 100%;
    border: 0px;
    border-bottom: 1px solid gray;
    background-color: white;
}
.divSearch{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.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;
}
.divTopSection {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

/* 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;
}
.txtSendTargetType {
    font-size: 13px;
}
.loader {
    position: absolute;
    border: 7px solid #f3f3f3; /* Light grey */
    border-top: 7px solid gray; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    z-index: 500;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.paging {
    width: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-top: 10px;
}
.pPaging{
    padding: 5px; 
    font-size: 13px;
}

.headerInner {
    width: 33.3%;
    display: flex;
    justify-content: center;
    align-items: center;
}