.whole-configuration-container {
  background: #fff;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.control-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0px 0px 0px 20px;
}

.control-label-wrapper {
  display: flex;
  color: #555555;
  column-gap: 10px;
  align-items: center;
}

.control-label {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
}

.regfield-icon {
  width: 18px;
  height: 18px;
}

.search-icon {
  cursor: pointer;
}

.ti-widget-toggle {
  width: 40px;
  height: 25px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 25px;
}

/* Styles for the slider */
.slider {
  position: absolute;
  cursor: pointer;
  height: 22px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 50px;
}

/* Styles for the slider thumb */
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Styles for the slider when in 'on' state */
input:checked + .slider {
  background-color: #158c9c;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

.sub-container {
  display: flex;
  height: calc(100% - 33px);
  width: 100%;
  position: relative;
  justify-content: space-between;
}

.controls-container {
  height: 100%;
  overflow: auto;
  display: flex;
  padding: 15px 20px;
  gap: 15px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.evaluation-control-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.card-container-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-container-middle {
    display: flex;
    gap: 20px;
}

.card-container-bottom {
  min-width: 910px;
}

.evaluation-control-firstrow, .evaluation-control-secondrow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.device-config {
    flex: 0.4;
    min-width: 390px;
}

.ilim-config {
    flex: 0.6;
    min-width: 500px;
}

.card-title {
  font-size: 15px;
  font-weight: bolder;
  margin-bottom: 5px;
  color: #148c9c;
}

.control-group {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.control-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-control {
    width: 130px !important;
    height: 30px !important;
}

.control-item-label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #555555;
  font-size: 15px;
  font-weight: 500;
}

.ti-widget-dropdown {
  width: 70px;
  height: 25px;
  border: none;
  background-color: #eeeeee;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  color: #555555;
  padding: 5px;
}

.input-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.step-class {
  width: 59px;
  height: 24px;
  border: none;
  background-color: transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  color: #148c9c;
  text-align: center;
  outline: auto;
}

.custom-width-slider{
  width: 100px;
}

.pin-row-first,.pin-row-second {
    display: flex;
    justify-content: space-between;
}
.pin-row-second{
  width: 72.4%;
}
.pin-config {
    width: 250px;
}

.log-sett-param-input {
  --paper-checkbox-checked-color: #02688C;
  --paper-checkbox-checked-ink-color: #02688C;
  --paper-checkbox-unchecked-color: #02688C;
  --paper-checkbox-unchecked-ink-color: #02688C;
}

input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}

paper-tooltip ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.tooltip-wrapper {
  font-size: 12px;
  max-width: 500px;
}

paper-tooltip li {
  margin-bottom: 4px;
}

.additional-gap{
  gap:30px;
}


@media screen and (max-height: 800px) {
  .controls-container {
    padding: 10px 15px;
    gap: 7px;
  }

  .evaluation-control-card {
    padding: 10px;
  }

  .control-group {
    row-gap: 12px;
  }
}