
.app-toolbar {
    z-index: 50;
    padding-left: 30px;
    /*background-color: #f7f7f7 !important;
    border-bottom: 1px solid #e1e1e1 !important;*/
}

.app-toolbar h1 {
  font-size: 22px !important
}

.app-header {
    border-bottom: 1px solid #e5e2e2;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.app-container {
    padding-left: 0px !important;
    padding-right: 0px !important
}

.filter-form {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e1e1e1;
    display: block;
}

.filter-form.hidden {
    display: none;
}

.filter-form label {
    margin-bottom: 8px;
}

/* Select2 */
.filter-form .select2-container--default .select2-selection--multiple {
    border: 1px solid #ccc;
    min-height: 35px;
    padding: 2px 5px;
    display: flex;
    align-items: center;
}

.filter-form .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-right: 18px;
}

.filter-form .select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.filter-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff;
    border: 1px solid var(--bs-gray-300);
    color: white;
    border-radius: 0.475rem;
    margin: 2px;
}

.filter-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    padding-left: 0;
    color: white;
    position: relative;
}

.filter-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: transparent;
    color: #ffcccc;
}

.filter-form .select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 2px;
}

/* Select */
.filter-form .form-select {
    padding: 2px 12px;
}

/* DateRange Picker */
#dateRange {
    width: 200px;
    /* padding: 8px 12px; */
    border: 1px solid var(--bs-gray-300);
    border-radius: 0.475rem;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

#dateRange:focus {
    outline: none;
}

.daterangepicker .ranges {
    padding-left: 8px;
}

.daterangepicker .ranges li.active {
  background-color: #007bff !important;
}

/* Custom Table */
table.dataTable.ui.table th.dt-type-numeric,
table.dataTable.ui.table th.dt-type-date,
table.dataTable.ui.table td.dt-type-numeric,
table.dataTable.ui.table td.dt-type-date {
    text-align: left;
}

.ui.table>tbody>tr>td,
.ui.table>tr>td {
    padding: 11px .78571429em;
}

.ui.table>thead>tr>th {
    background-color: #f1ecfb !important;
    color: #6c7184 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
}

.ui.table>thead {
    border-top: 1px solid #e1e1e1 !important;
    border-bottom: 1px solid #e1e1e1 !important;
}

.ui.table {
    border: none !important;
}

.ui.celled.table>tbody>tr>td,
.ui.celled.table>tbody>tr>th,
.ui.celled.table>tfoot>tr>td,
.ui.celled.table>tfoot>tr>th,
.ui.celled.table>thead>tr>th,
.ui.celled.table>tr>td,
.ui.celled.table>tr>th {
    border-left: 0px;
}

/* Filter section toggle */
.filter-form {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e1e1e1;
    /* max-height: 200px; Adjust based on your content height */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.filter-form.hidden {
    max-height: 0;
    transition: max-height 0.3s ease-in;
}


.select2-container--default .select2-selection--single {
    height: 42px !important;
}