#participant-info-component {
  position: absolute;
  top: 14%;
  right: 0;
  width: 25%;
  position: fixed;
  height: 75.5%;
  z-index: 9;
  backdrop-filter: blur(10px);
  color: white;
}
.show-participant-component {
  width: 50% !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}
#dialog-participant-info {
  display: block;
  height: 100%;
}
#dialog-participant-container {
  padding: 1rem 0;
  color: white;
  /* height: 100%; */
  transition: all 0.5s;
  border-radius: 0.375rem;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1.5rem;
}
.update-dialog-participant-container {
  backdrop-filter: none !important;
  background: none !important;
}
.participant-info-show {
  display: block;
}
#disconnect-all-container {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  /* margin-top: 5rem; */
}
#disconnect-all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 1.5rem;
}
.participant-table {
  margin-top: 0.5rem;
}
.participant-table * {
  margin-top: 1rem;
  padding: 0 0.5rem;
}
.participant-table td:nth-child(even) {
  padding-top: 1rem;
  text-align: end;
}
.participant-components {
  padding-top: 4rem !important;
  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;
}
.participant-content {
  display: none;
}

.participant-links {
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
  border-top: 0.5px solid transparent; /* Set the right border */
  border-image: linear-gradient(
    to right,
    rgba(231, 231, 231, 0.2),
    rgba(231, 231, 231, 1),
    rgba(231, 231, 231, 0.2)
  );
  border-image-slice: 1;
}
.participant-links img {
  width: 1.5rem;
  height: 1.5rem;
}
.participant-links a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem;
  transition: background-color 0.3s;
}

.participant-links a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.participant-links i {
  margin-right: 0.25rem;
}

.component-code {
  display: none;
  margin-top: 6rem;
  padding: 0 1rem;
}
.active-partisipant-link {
  background-color: rgba(255, 255, 255, 0.15);
}
#changeRole,
#presentation,
#waitingMode {
  padding: 1.5rem 1rem 0.5rem 1rem;
}
#MovingParticipant {
  padding: 1.2rem 0;
}
#changeRole label {
  margin: 0 1rem;
}
.partisipant-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.partisipant-checkbox input[type="radio"] {
  position: absolute;
  display: block;
  padding: 2rem;
  left: 3px;
}
.partisipant-checkbox .checkbox-label {
  display: inline-block;
  padding-left: 24px; /* Adjust as needed */
  position: relative;
  color: white; /* Adjust text color */
}

.partisipant-checkbox .checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; /* Adjust checkbox size */
  height: 20px; /* Adjust checkbox size */
  border: 2px solid #fbb03a; /* Custom color */
  border-radius: 50%; /* Adjust border radius as needed */
  box-sizing: border-box;
  background-color: transparent;
}

.partisipant-checkbox input[type="radio"]:checked + .checkbox-label::before {
  background-color: #fbb03a; /* Custom color when checked */
  padding: 2px;
}
.sel-participant-info-close {
  display: none;
}

@media screen and (max-width: 37.5em) {
  #participant-info-component {
    top: 0;
    width: 100%;
    height: 90%;
    backdrop-filter: blur(30px);
  }
  #dialog-participant-container {
    background: rgba(0, 0, 0, 0.3)
  }
  .show-participant-component {
    width: 100% !important;
  }
  .participant-table * {
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }
  .participant-info-header {
    position: absolute;
    width: 100%;
  }
  .sel-participant-info-close {
    display: flex;
    margin-right: auto;
    width: 1.5rem;
    height: 1.5rem;
  }
  .dialog-content {
    padding-top: 3rem;
  }
  /* .sel-escalate-video-close {
    display: none !important;
  } */
}
@media screen and (max-height: 40em) {
  #participant-info-component {
    top: 10%;
  }
  .participant-table * {
    margin-top: 0rem;
    padding: 0 0.5rem;
  }
  .participant-table label,
  .participant-table span {
    font-size: 0.8rem;
  }
  .participant-links a {
    padding: 0.25rem 0.75rem;
  }
  .dialog-title {
    font-size: medium;
  }
  .dialog-sub-title span {
    font-size: 0.8rem;
  }
  .participant-info-avatar {
    font-size: 1.75rem;
  }
}
