/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.tom-select .ts-control {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
}

.tom-select .ts-dropdown {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem;
}

.tom-select .ts-dropdown .dropdown-input-wrap {
  margin-bottom: 0.5rem;
}

.tom-select .ts-dropdown .dropdown-input {
  font-size: 1.125rem;
}

.tom-select .ts-dropdown .ts-dropdown-content {
  border: 0;
}

.tom-select .ts-dropdown .ts-dropdown-content .option {
  font-size: 1.125rem;
  padding: 0.5rem;
}

.switch-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.switch-option {
  flex: 1;
  text-align: center;
}

.switch-option input[type="radio"] {
  appearance: none;
  display: none;
}

.switch-label {
  padding: 0.5rem 2.15rem;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}

.switch-option input:checked + .switch-label {
  background-color: #1E88E5;
  color: white;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
