.custom-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f9fa;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}

.custom-toast-success {
  border-left: 4px solid #28a745;
}

.custom-toast-error {
  border-left: 4px solid #dc3545;
}

.toast-close {
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  cursor: pointer;
}

.steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  background: #2c2c2c;
  border-radius: 8px;
  padding: 0;
}

.steps-indicator .step {
  flex: 1;
  padding: 15px;
  text-align: center;
  position: relative;
  color: #888;
}

.steps-indicator .step.active {
  background: #dc3545;
  color: #fff;
}

.steps-indicator .step:first-child {
  border-radius: 8px 0 0 8px;
}

.steps-indicator .step:last-child {
  border-radius: 0 8px 8px 0;
}

/* Step Content */
.step-content {
  padding: 30px;
  background: #2c2c2c;
  border-radius: 8px;
  margin-bottom: 30px;
}

.email-verification-status {
  text-align: center;
  margin-bottom: 30px;
}

.email-verification-status img {
  width: 64px;
  margin-bottom: 20px;
}

.success-message {
  background: #28a745;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Profile Settings */
.profile-photos {
  margin-top: 30px;
}

.profile-photo-upload {
  margin-bottom: 20px;
}

.upload-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.pricing-section {
  padding-top: 20px;
}

.price-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Document Upload */
.document-upload {
  margin-top: 20px;
}

.upload-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.upload-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
}

.upload-item label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-indicator {
    flex-direction: column;
  }

  .steps-indicator .step {
    border-radius: 0;
  }

  .steps-indicator .step:first-child {
    border-radius: 8px 8px 0 0;
  }

  .steps-indicator .step:last-child {
    border-radius: 0 0 8px 8px;
  }

  .upload-section {
    grid-template-columns: 1fr;
  }

  .price-inputs {
    grid-template-columns: 1fr;
  }
}
/* Add these styles */
.verification-handler-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #1a1a1a;
  color: #fff;
}

.verification-handler-container h4 {
  margin-bottom: 1rem;
}

.verification-handler-container .spinner-border {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
.upload-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.preview-image {
  max-width: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.preview-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pricing-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
}

.text-muted {
  color: #888 !important;
  font-size: 0.875rem;
}

.suffix {
  color: #888;
  font-size: 0.875rem;
  margin-left: 8px;
}
.tag-select-container {
  position: relative;
  width: 100%;
}

.tag-select-input {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  min-height: 56px;
  padding: 8px 40px 8px 12px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-select-input i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black-500);
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--primary);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag button {
  background: none;
  border: none;
  color: var(--white);
  padding: 0;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.tag-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border: 1px solid var(--black-100);
  border-radius: 8px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.tag-option {
  padding: 10px 12px;
  cursor: pointer;
  color: var(--black-500);
}

.tag-option:hover {
  background: var(--black-50);
  color: var(--white);
}

.tag-option.selected {
  background: var(--primary);
  color: var(--white);
}
.form-submit-btn .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn.outline-btn.me-3 {
  margin-right: 1rem;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

.css-13cymwt-control {
  background: rgba(255, 255, 255, 0.05) !important ;
  border-radius: 8px !important;
  border: none !important;
  height: 56px;
  font-size: 16px;
  font-family: var(--semiBold);
  color: var(--black-500);
  outline: none;
  box-shadow: none;
  color: var(--white);
}

.react-select-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: none;
  min-height: 56px;
  font-size: 16px;
  font-family: var(--semiBold);
  color: var(--white);
  outline: none;
  box-shadow: none;
}

.react-select__control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: none !important;
  border-radius: 8px !important;
  min-height: 56px !important;
  box-shadow: none !important;
}

.react-select__placeholder {
  color: var(--white) !important;
  font-family: var(--semiBold);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.react-select__control--is-focused .react-select__placeholder {
  opacity: 0.6;
}
.react-select__single-value {
  color: var(--white) !important;
  font-size: 14px !important;
}

.react-select__menu {
  background: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.react-select__option {
  color: #000 !important;
  padding: 10px !important;
  font-size: 14px !important;
}

.react-select__option:hover,
.react-select__option--is-focused {
  background: #ddd !important;
}

.react-select__multi-value {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 6px;
}

.react-select__multi-value__label {
  color: var(--white) !important;
}

.react-select__multi-value__remove {
  color: #000 !important;
  background: rgba(214, 210, 210, 0.7) !important;
}

.react-select__indicator-separator {
  display: none !important;
}

.react-datepicker-wrapper {
  width: 100%;
}

.react-datepicker__input-container {
  width: 100%;
}

.react-datepicker__input-container input {
  width: 100%;
  height: 56px;
  padding: 10px 12px;
  font-size: 16px;
  font-family: var(--semiBold);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  transition: opacity 0.3s ease;
}

.react-datepicker__input-container input::placeholder {
  color: var(--black-500);
  font-family: var(--semiBold);
  opacity: 1;
}

.react-datepicker__input-container input:hover,
.react-datepicker__input-container input:focus {
  opacity: 0.8;
}

.react-datepicker {
  font-family: "Arial", sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.react-datepicker__header {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: none;
}

.react-datepicker__day {
  padding: 8px;
  font-size: 14px;
  color: var(--white);
}

.react-datepicker__day:hover {
  background: var(--black-500);
  color: white;
  border-radius: 4px;
}

.react-datepicker__day--selected {
  background: var(--black-500) !important;
  color: white !important;
  border-radius: 4px;
}

.react-datepicker__day--disabled {
  color: rgba(255, 255, 255, 0.3) !important;
  cursor: not-allowed !important;
}

.react-datepicker__triangle {
  display: none;
}

.has-selected::before {
  content: "●";
  color: red;
  font-size: 12px;
  margin-right: 5px;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo-animation {
  width: 150px;
  height: auto;
  animation: pulse 1.5s ease-in-out infinite, moveSide 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes moveSide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

.delete-image-btn {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: unset !important;
  flex-direction: column;
  gap: 5px;
  width: unset !important;
  background: none;
  border: unset !important;
  border-radius: 8px;
  color: var(--black-500);
  font-family: var(--semiBold);
  position: relative;
}

.delete-image-btn:hover {
  background: rgba(52, 20, 166, 0.562);
}








.profile-video {
   width: 100%;
   aspect-ratio: 16 / 9;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   position: relative;
   background-color: black; /* Ensure it matches your design */
}

.profile-video > div {
   all: unset !important; /* Remove all styles applied by Agora */
   width: 100% !important;
   height: 100% !important;
   position: relative !important;
   overflow: hidden !important;
   background-color: transparent !important;
}

.profile-video video {
   width: 100% !important;
   height: 100% !important;
   object-fit: contain !important;
   position: absolute !important;
   left: 0 !important;
   top: 0 !important;
}


.viewer-count {
   position: absolute;
   top: 10px;
   right: 10px;
   background: rgba(0, 0, 0, 0.6);
   color: #fff;
   padding: 6px 12px;
   border-radius: 12px;
   font-size: 14px;
   font-weight: bold;
   display: flex;
   align-items: center;
   gap: 5px;
   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
   z-index: 10;
}
