#dialog-disconnect {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background-color: #272527;
  color: white;
}
.disconnect-form {
  width: 30rem;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.5rem;
}
.search-sort {
  position: absolute;
  border: none;
  background: none;
  left: 1rem;
  top: 50%;
  transform: translateY(-13px);
  width: 1.5rem;
}
#dialog-dialpad {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#dialog-cameracontrol {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#dialog-select-output {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#dialog-screen-share-missing {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#dialog-transfer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.transfer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}
.transfer-input {
  background-color: transparent !important;
  color: white !important;
  border: 1px solid white;
}
.transfer-input::placeholder {
  color: white;
}
.sel-conference-disconnect:hover {
  background: linear-gradient(30deg, #a1200f 30%, #e22209 80%);
}
.call-links {
  list-style: none;
  padding: 0;
}

.call-links a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  transition: background-color 0.3s;
}

.call-links a:hover {
  color: #fbb03a;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}
.call-links i {
  margin-right: 0.25rem;
}
.call-active-link {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}
.call-components {
  border-right: 0.5px solid transparent; /* Set the right border */
  border-image: linear-gradient(
    to bottom,
    rgba(231, 231, 231, 0.2),
    rgba(231, 231, 231, 1),
    rgba(231, 231, 231, 0.2)
  );
  border-image-slice: 1;
}
.hand-rise {
  text-align: start;
  padding: 1rem 1rem;
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: white;
}
.hand-rise:hover {
  color: #fbb03a;
}
.volume-text {
  white-space: nowrap;
  text-align: center;
}
.transparency-container {
  padding: 3rem 0;
}
#transparency {
  width: 100%;
  direction: ltr;
  background-color: #fbb03a;
  border-radius: 5px;
}
#audioInput {
  direction: ltr;
  border-radius: 5px;
}
/* Customize the track */
#audioInput {
  appearance: none;
  -webkit-appearance: none; /* Remove default styles in WebKit browsers */
  width: 100%; /* Set the width of the range input */
  height: 10px; /* Set the height of the track */
  background: linear-gradient(
    to right,
    #fbb03a 0%,
    #fbb03a 100%,
    #ddd 50%,
    #ddd 100%
  ); /* Default background with color fill */
  outline: none; /* Remove the default focus outline */
}
/* Customize the track */
input[type="range"] {
  appearance: none;
  -webkit-appearance: none; /* Remove default styles in WebKit browsers */
  width: 100%; /* Set the width of the range input */
  height: 10px; /* Set the height of the track */
  background: linear-gradient(
    to right,
    #fbb03a 0%,
    #fbb03a 60%,
    #ddd 50%,
    #ddd 100%
  ); /* Default background with color fill */
  outline: none; /* Remove the default focus outline */
  border-radius: 1rem;
}

/* Customize the thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Remove default styles for thumb in WebKit browsers */
  width: 20px; /* Set the width of the thumb */
  height: 20px; /* Set the height of the thumb */
  background: #fbb03a; /* Set the background color of the thumb */
  border: 1px solid #ddd; /* Add a border to the thumb for better visibility */
  border-radius: 50%; /* Make the thumb circular */
  cursor: pointer; /* Change cursor to pointer on hover */
}
@media screen and (max-width: 37.5em) {
  .call-links a {
    justify-content: center;
    padding: 1rem 0.5rem;
  }
  .call-links span {
    display: none;
  }
  .hand-rise {
    display: flex;
    justify-content: center;
  }
  .hand-rise span {
    display: none;
  }
}
