/* Switch Tutor Modal Styles */
#tsubs-switch-tutor-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 17, 23, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  /* Higher than transfer options */
}

.tsubs-st-section {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
}

.tsubs-st-header {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border-bottom: 1px solid #f5f5f7; */
}

.tsubs-st-back-btn,
.tsubs-st-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #121117;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tsubs-st-title {
  font-size: 24px;
  font-weight: 700;
  color: #121117;
  margin: 0;
  text-align: center;
  flex-grow: 1;
  padding: 0 16px;
  line-height: 1.2;
}

.tsubs-st-content {
  padding: 0;
  overflow-y: auto;
  flex-grow: 1;
}

.tsubs-st-group {
  padding: 24px 0 0 0;
}

.tsubs-st-group-title {
  font-size: 14px;
  font-weight: 500;
  color: #8d8c9b;
  margin: 0 40px 16px 40px;
  text-transform: capitalize;
}

.tsubs-st-tutor-list {
  display: flex;
  flex-direction: column;
}

.tsubs-st-tutor-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f5f5f7;
}

.tsubs-st-tutor-item:hover {
  background-color: #fafafb;
}

.tsubs-st-tutor-item:last-child {
  border-bottom: none;
}

.tsubs-st-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.tsubs-st-info {
  flex-grow: 1;
}

.tsubs-st-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #121117;
  margin: 0 0 2px 0;
}

.tsubs-st-info p {
  font-size: 13px;
  color: #6c6b75;
  margin: 0;
}

.tsubs-st-chevron {
  color: #121117;
  opacity: 0.3;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .tsubs-st-section {
    max-width: 95%;
    margin: 0 10px;
  }

  .tsubs-st-header {
    padding: 20px;
  }

  .tsubs-st-title {
    font-size: 20px;
  }

  .tsubs-st-tutor-item {
    padding: 12px 20px;
  }

  .tsubs-st-group-title {
    margin: 0 20px 12px 20px;
  }

  #tsubs-switch-tutor-backdrop .tsubs-st-section {
    min-height: 100%;
    min-width: 100%;
    border-radius: 0;
  }
}