:root {
    --primary: #024caa;
    --secondary: #9ba4b5;
    --success: #73ec8b;
    --warning: #e7b733;
    --danger: #e14c4c;
    --info: #4cc9fe;
}

:root[data-bs-theme="light"] {
    --table-bg-color: #F5F5F5;
    --table-text-color: #333333;
    --table-border-color: #DDDDDD;
    --table-button-bg-color: #F5F5F5;
    --table-button-text-color: #333333;
    --table-button-border-color: #DDDDDD;
    --input-bg-color: white;
    --input-group-bg-color: #f5f5f5;
}
  
:root[data-bs-theme="dark"] {
    --table-bg-color: #0f151f;
    --table-text-color: #DDDDDD;
    --table-border-color: #363C46;
    --table-button-bg-color: #0f151f;
    --table-button-text-color: #DDDDDD;
    --table-button-border-color: #363C46;
    --input-bg-color: #212529;
    --input-group-bg-color: #2B3035;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

input, select, textarea, ::placeholder {
    font-size: 12px !important;
    box-shadow: none !important;
}

.input-group {
    border: 1px solid var(--table-border-color);
    border-radius: 0.25rem;
    background-color: var(--input-group-bg-color);
}

.input-group .input-group-text {
    border: none;
    border-radius: 0.25rem;
    background-color: transparent;
}

.input-group input {
    border: none;
    border-radius: 0 !important;
    background-color: var(--input-bg-color);
}

a:disabled {
    cursor: not-allowed;
}

.custom-tooltip {
    --bs-tooltip-bg: #f5f5f5;
    --bs-tooltip-color: #333333;
}

.table-custom {
    border-collapse: collapse;
}

.table-custom th {
    padding: 0.5rem;
    border: 1px solid var(--table-border-color) !important;
    font-weight: 600 !important;
    text-align: center !important;
    align-items: center !important;
    background-color: var(--secondary) !important;
    color: #f5f5f5 !important;
}

.table-custom td {
    padding: 0.5rem;
    border: 1px solid var(--table-border-color) !important;
}

.table-custom .table-button-custom {
    background-color: var(--secondary);
    color: #f5f5f5 !important;
    border: 1px solid var(--table-button-border-color);
}

/* .table-custom {
    --border: 1px solid var(--table-border-color);
    border-radius: 0.5rem;

    border-spacing: 0;
    border-collapse: separate;
    border: var(--border);
    overflow: hidden;

    background-color: white;
}

.table-custom thead th {
    padding: 0.5rem;
    text-align: center !important;
    vertical-align: middle !important;
    font-weight: 600;
}

.table-custom tfoot th {
    padding: 0.25rem;
    text-align: center !important;
    vertical-align: middle !important;
}

.table-custom td:not(:last-child) {
    padding: 0.5rem;
}

.table-custom th:not(:last-child),
.table-custom td:not(:last-child) {
    border-right: var(--border);
}

.table-custom>thead>tr:not(:nth-child(1))>th {
    border-right: var(--border);
}

.table-custom>thead>tr:nth-child(1)>th {
    border-bottom: var(--border);
}

.table-custom>thead>tr:not(:nth-child(1))>th {
    border-bottom: var(--border);
}

.table-custom>tfoot>tr>th {
    border-top: 1px solid var(--border) !important;
}

.table-custom>thead>tr:not(:last-child)>th,
.table-custom>thead>tr:not(:last-child)>td,
.table-custom>tbody>tr:not(:last-child)>th,
.table-custom>tbody>tr:not(:last-child)>td,
.table-custom>tfoot>tr:not(:last-child)>th,
.table-custom>tfoot>tr:not(:last-child)>td,
.table-custom>tr:not(:last-child)>td,
.table-custom>tr:not(:last-child)>th,
.table-custom>thead:not(:last-child),
.table-custom>tbody:not(:last-child),
.table-custom>tfoot:not(:last-child) {
    border-bottom: var(--border);
}

.table-custom>thead>tr>th, .table-custom>tfoot>tr>th {
    background-color: #eceff3 !important;
} */

.dt-input {
    border: 1px solid var(--table-border-color) !important;
}

.scrollbar-x-none {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
  
.scrollbar-x-none::-webkit-scrollbar {
    display: none;
}

.air-datepicker {
    z-index: 1060 !important;
}

.select2 {
    width: 100% !important;
}

.form-label {
    margin-bottom: 0.25rem;
    font-weight: 600;
}