@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.font-poppins {
    font-family: "Poppins", "sans-serif";
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

.kiosk-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px gray solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.sidebar-coloring {
    background-color: #1a194d !important;
    color: white !important;
}
#data-table thead,
#receptionists-data-table thead,
#employees-data-table thead,
#visitor-status-data-table thead {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1;
    background-color: #1a194d;
    color: #e1e3e6;
    text-align: center;
    font-weight: bold;
}

#data-table th,
#data-table td,
#receptionists-data-table th,
#receptionists-data-table td,
#employees-data-table th,
#employees-data-table td,
#visitor-status-data-table th,
#visitor-status-data-table td {
    border-color: #d2d5d8;
}
#data-table,
#employees-data-table,
#receptionists-data-table,
#visitor-status-data-table {
    border-bottom: none;
    max-width: 100%;
}
#data-table tbody,
#employees-data-table tbody,
#receptionists-data-table tbody,
#visitor-status-data-table tbody {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
}

#data-table tbody tr:nth-child(odd),
#employees-data-table tbody tr:nth-child(odd),
#receptionists-data-table tbody tr:nth-child(odd),
#visitor-status-data-table tbody tr:nth-child(odd) {
    background-color: #ecf0f3;
}

#data-table tbody tr:nth-child(even),
#employees-data-table tbody tr:nth-child(even),
#receptionists-data-table tbody tr:nth-child(even),
#visitor-status-data-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.dataTables_filter input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    margin: 0.5rem;
    font-size: 0.9rem;
    line-height: 1;
    /* color: #495057; */
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.dataTables_length select {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    line-height: 1;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dataTables_length {
    margin: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.dataTables_filter {
    font-size: 0.9rem;
    font-weight: bold;
}
.dataTables_info {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 4px 10px;
}
.dataTables_paginate {
    margin: 4px 10px;
    font-size: 0.9rem;
    font-weight: bold;
}
.flex-row-start-center {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0.75rem;
}
