#select-styles {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    text-align: center;
}

#option {
    background-color: #f6f6f6;
    color: black;
    line-height: 1.8;
}

#myInput {
    box-sizing: border-box;
    background-image: url('../images/search.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    background-size: 7%;
    font-size: 12px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 220px;
}

#myInput:focus {outline: none;}

#supervisorInput {
    box-sizing: border-box;
    background-image: url('../images/search.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    background-size: 7%;
    font-size: 12px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 220px;
}

#supervisorInput:focus {outline: none;}


/* =============== DROPDOWN TO SEARCH AND SELECT ================ */
.dropdown_agents_option {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #ff4700;
    color: white;
    padding: 8px 0px;
	margin-bottom: 20px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    transition: .5s;
    width: 230px;
    text-align: center;
    outline: none;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #b13200;
    transition: .5s;
}

.dropdown-content {
    min-width: 200px;
    height: 180px;
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 10px;
	top: 30px;
}

.dropdown-content a:last-child {
    padding-bottom: 10px;
}

.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background-color: #ff4700;
    border-radius: 10px;
}


.dropdown-content::-webkit-scrollbar-track {
    background-color: lightgray;
    border-radius: 10px;
}

.dropdown-content a {
    font-size: var(--font-size-small);
    padding: 8px 10px;
    display: block;
}

.dropdown-content a:hover {background-color: var(--color-light-gray);}

.show {display: block;}



/* ========================= TOGGLE STYLES ============================= */
.active-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-button small {
    margin: 0px 5px;
    font-size: 11px;
}

.active-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #ff4700;
}

input:focus + .slider {
    box-shadow: 0 0 1px #ff4700;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

  /* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider-agents {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider-agents:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider-agents {
    background-color: #ff4700;
  }

  input:focus + .slider-agents {
    box-shadow: 0 0 1px #ff4700;
  }

  input:checked + .slider-agents:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider-agents.round {
    border-radius: 34px;
  }

  .slider-agents.round:before {
    border-radius: 50%;
  }
