.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bottom-sheet {
  background: white;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.bottom-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.bottom-sheet-content {
  background: white;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  animation: slideUp 0.3s ease-out;
  overflow-y: auto;
}

.bottom-sheet-title {
  font-weight: 600;
  margin: 0;
}

.handle-bar {
  width: 36px;
  height: 4px;
  background-color: #C4C4C4;
  border-radius: 2px;
  margin: 8px auto 0 auto;
}

/* Modal overlay for centered modals (like reschedule) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-content-wrapper {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalFadeIn 0.3s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Modal button hover effects */
.modal-content-wrapper button:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-content-wrapper button:not(:disabled):active {
  transform: translateY(0);
}

.modal-content-wrapper select:focus,
.modal-content-wrapper textarea:focus {
  outline: none;
  border-color: #5A2476;
  box-shadow: 0 0 0 2px rgba(90, 36, 118, 0.1);
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.option-item:hover {
  background-color: #f5f5f5;
}

.option-content {
  flex: 1;
}

.option-text {
  font-size: 15px;
  font-weight: 500;
}

.option-icon {
  margin-left: 16px;
}

/* PIN Confirmation Sheet Styles */
.pin-confirmation-sheet {
  max-height: 95vh !important;
  height: auto !important;
  min-height: auto !important;
}

.pin-content {
  padding: 0px 20px 36px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.instructions-text {
  color: #272C34 !important;
  font-size: 15px !important;
  line-height: 1.43em !important;
  letter-spacing: 1.07% !important;
  text-align: left !important;
  margin: 0 !important;
}

.pin-input-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pin-display {
  background-color: #F5F5F5;
  border-radius: 4px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.pin-display:hover {
  background-color: #EEEEEE;
}

.pin-display-text {
  color: #424242 !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 8px !important;
  text-align: center !important;
  margin: 0 !important;
}

.confirm-button {
  height: 53px !important;
  background-color: #5A2476 !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-radius: 4px !important;
  text-transform: none !important;
}

.confirm-button:disabled {
  background-color: rgba(0, 0, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
