html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.section-header {
  height: 40px;
  background-color: #dee9f3;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
}

.section {
  border: solid;
  border-color: gray;
  border-width: 1px;
  margin-bottom: 3px;
  padding: 0px;
  border-top-color: darkblue;
  border-top-width: 5px;
}

.selected-column-item {
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.column-label {
  flex: 2;
}

.combo-label {
    flex: 2;
}

.combo-columns-list {
    flex: 3;
    max-width: 70%;
    display: flex;
    flex-wrap: wrap;
}

.column-info {
  flex: 3;
  color: #666;
  font-size: 10px;
}

.delete-column:hover {
  background: #cc0000;
}

#selectedColumnsContainer {
  min-width: 400px;
}

.filter-item {
  margin-bottom: 10px;
  background: #f8f9fa;
  border-radius: 4px;
}

.filter-item .d-flex {
  margin-bottom: 5px;
}

.subconditions-container {
  padding-left: 4px;
  border-left: 2px solid #ddd;
}

.add-subcondition {
  margin-top: 5px;
}

.delete-filter {
  padding: 2px 6px;
  font-size: 12px;
}

.combo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.combo-modal {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-height: 80%;
    overflow: auto;
    width: 300px;
}

.combo-modal h5 {
    margin-top: 0;
}

.dropdown-menu {
    position: fixed !important;
}

.dropdown-item {
    font-size: 12px; /* Adjust the size as needed */
}

.xs{
    font-size: 9px;
}

.separator {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: gray;
    gap: 4px;
}

.separator-line {
    flex-grow: 1;
    height: 1px;
    background-color: gray;
    margin-left: 10px;
}

.btn-gray {
    background-color: gray;
    border-color: gray;
    color: white;
}

.btn-gray:hover {
    background-color: darkgray;
    border-color: darkgray;
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-item{
    cursor: pointer;
}
.pagination {
    flex-wrap: wrap;
    align-items: center;
}