.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 {
  padding: 16px 20px;
}

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

.bottom-sheet-content {
  padding: 0;
}

.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;
}
