/*
 * 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.
 */

/* Container */
.container {
  max-width: 80rem; /* 1280px = max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Tom Select overrides */
.ts-wrapper {
  font-family: inherit;
}
.ts-control {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  min-height: 2.5rem;
}
.ts-control,
.ts-control input {
  font-size: 0.875rem;
  color: #374151;
}
.ts-wrapper.focus .ts-control {
  border-color: #E2556B;
  box-shadow: 0 0 0 2px rgba(226, 85, 107, 0.1);
}
.ts-dropdown {
  border: 1px solid #e5e7eb;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
}
.ts-dropdown .active {
  background-color: #fdf2f4;
  color: #1a1a2e;
}
.ts-wrapper.multi .ts-control > div {
  background: rgba(226, 85, 107, 0.1);
  color: #E2556B;
  border-radius: 9999px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 500;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid rgba(226, 85, 107, 0.2);
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(226, 85, 107, 0.15);
}
