*{
    box-sizing: border-box;
    clear: both;
}
body{
    padding: 0;
    margin: 0;
    background: #f1f9f1f9;
    font-family: Arial, Helvetica, sans-serif;
}
.logo{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0 0 10px;
    width: 80px;
}
.logo img{
    width: 100%;
}
.row{
    display: flex;
    flex-direction: row;
    /* align-items: center;
    justify-content: center; */
    gap: 30px;
    width: 100%;;
}
.app-container{
    width: 100%;
    padding: 50px 0;
}
.app-container .upload-files{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: 85vh;
    padding: 30px 100px 0;
}
.app-container .upload-files .upload{
    padding: 100px;
    background: #1888e3a8;
    background: #095fa482;
    background: #0088ff21;
    color: #0088ff;
    border: 2px dashed #0088ff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}
.app-container .upload-files .upload:hover{
    background: #0088ff35;
}
.app-container .upload-files .upload>i{
    font-size: 3rem;
}
.app-container .upload-files .upload h2{
    margin-bottom: 0;
}
.app-container .upload-files .upload input{
    /* display: none; */
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}
.app-container .upload-files .upload.active{
    color: green;
    border-color: green;
    background: rgba(38, 255, 38, 0.228);
}
.app-container .upload-files .upload.active p{
    display: flex;
    gap: 5px;
}

.btn{
    padding: 10px 25px;
    border-radius: 10px;
    border: 2px solid #0088ff;
    color: #0088ff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin: 20px;
}
.table-container .row{
    justify-content: center;
}
.btn[disabled]{
    background: #0088ff;
    padding: 5px 25px;
    cursor: no-drop;
}
.btn[disabled] img{
    width: 30px;
}
.btn:hover{
    background: #0088ff;
    color: #f1f9f1f9;
}

/*  */
.dataTables_wrapper {
    /* display: flex;
    flex-wrap: wrap; */
    padding: 0 20px;
    position: relative;
}
 table {
     border-collapse: collapse;
     width: 100%;
     padding: 20px 0 !important;
    }
    thead{
        background: #279aff;
        color: #fff;
    }
/* .dataTables_length, */
.dataTables_filter{
    /* padding: 0 20px; */
    justify-self: flex-end;
    position: absolute;
    left: 100%;
    transform: translateX(calc(-100% - 20px));
    width: 300px;
}
    /* table {
    border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 15px;
  min-width: 200px;
}

tr:nth-child(even){background-color: #e8e7e7}

th {
  background-color: #0578dc;
  color: white;
} */

.hide{
    display: none !important;
}