/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300&family=Signika+Negative:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,700&family=Roboto:ital,wght@1,300&family=Signika+Negative:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700&family=Roboto+Mono:ital,wght@1,700&display=swap'); */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-family: 'Signika Negative', sans-serif;
}

html,
body {
    background: #B2BDC5;
    width: 100%;
    white-space: nowrap;
    overflow-x: clip;
}

.table-section {
  
    background: white;
    margin: auto;
}

.header {
    overflow-x: auto;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    background: #60446B;
    color: #ffffff;
    align-items: center;
}



.header form {
    display: flex;
    flex-direction: column;
}

.header form input {
    margin-right: 41px;
    width: 180px;
    height: 30px;
}

@media(max-width:768px) {
    .table-section {
        width: 100vw;
    }

    .header {
        padding: 10px;
    }

    .header h1 {
        font-size: 25px;
    }

    .header form input {
        margin: 0;
        width: 150px;
    }
}

@media(max-width:400px) {
    .header h1 {
        font-size: 20px;
    }

    .header {
        padding: 5px;
    }
}

.table-form {
    padding: 10px 15px;
    background: #FFB9A8;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-form label {
    font-size: 25px;
    font-weight: 900;
    color: black;
    letter-spacing: 2px;
}

.table-form [type="button"] {
    background: #458f5e;
    outline: none;
    border: none;
    color: white;
    font-weight: bold;
    padding: 5px 7px;
    border-radius: 3px;
    font-size: 15px;
}

.table-form {
    overflow-x: auto;
    padding: 10px 15px;
    background: #FFB9A8;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

select,
option {
    height: 35px;
    width: 200px;
    letter-spacing: .5px;
    font-size: 20px;
    text-align: center;
    border: none;
    outline: none;

    border-radius: 2px;
}

.table-form input,
.btn {
    height: 35px;
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    outline: none;
}

.table-form input[type="submit"] {
    background: #22cc13;
    height: 35px;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    font-weight: bold;
    letter-spacing: .9PX;
    margin-left: 20px;
    margin-top: -2px;
}

.table {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: auto !important;
  height: auto;
    max-height: 75vh;
}

table {
    width: 100%;
    position: relative;
   
}


table thead tr th {
    background: #DA4657;
    color: #ffffff;
    padding: 5px;
  text-align: center;
    font-weight: 600;
    font-size: 12px;
}
#table-head {
    position: sticky;
    top: 0;
    width: 100% !important;
}
.table-btn {
    outline: none;
    border: none;
    color: white;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 2px;
}

.red {
    background: #F75A39;
}

.green {
    background: #289661;
}

table tbody tr td {
    font-weight: 500;
    color: black;
    padding: 2px;
    font-size: 12px;
}

table tbody tr:nth-child(even) {
    background: #d3dee3;
}

table tbody tr:nth-child(odd) {
    background: #e9daeb;
}


table tbody tr:hover {
    background-color: rgb(189, 227, 255);
}

 table {
     border-collapse: collapse;
 }

 tr,
 th,
 td,
 th {
     border: solid 1px black;
     text-align: center;
 }