.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgb(240, 240, 240);
    max-width: 1300px;
    max-height: 600px;
    margin: 20px auto;
    position: relative;
}

.table {
    width: 100%;
}
.table h2 {
    text-align: center;
    margin-bottom: 20px;
}
.table_header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
    border: 1px solid black;
    background-color: rgb(240, 240, 240);
}

.table_header h1 {
    color: black;
}

button {
    outline: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.search {
    color: white;
    background-color: black;
}

button i {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

input {
    font-size: 15px;
    width: 350px;
    height: 35px;
    margin: 0 10px;
    outline: none;
    border: 1px solid black;
    border-radius: 6px;
    color: black;
    padding-left: 20px;
}

::placeholder {
    color: black;
    font-size: 15px;
}

.table_section {
    height: 300px;
    overflow: auto;
}
table {
    width: 100%;
    table-layout: fixed;
    min-width: 800px;
    border-collapse: collapse;
}

thead th {
    position: sticky;
    top: 0;
    background-color: white;
    color: black;
    font-size: 15px;
}

th, td {
    border: 1px solid black;
    padding: 10px 20px;
    word-break: break-all;
    text-align: center;
}

th:first-child, td:first-child {
    width: 6%;
}

::-webkit-scrollbar{
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-track{
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb{
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.pagination {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    background: white;
}

.pagination div {
    padding: 10px;
    border: 1px solid black;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    box-shadow: 0px, 0px, 4px, 0px rgba(0,0,0,0.75);
    margin: 0, 5px;
    cursor: pointer;
}