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

.selected-city-toggle {
  border-color: #047857 !important; /* emerald-700 */
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important; /* emerald-600 to emerald-700 */
  color: #ffffff !important;
  box-shadow: 0 4px 14px 0 rgba(4, 120, 87, 0.4) !important;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.2) !important;
}

.dark .selected-city-toggle {
  border-color: #10b981 !important; /* emerald-500 */
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important; /* emerald-600 to emerald-700 */
  color: #ffffff !important;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.4) !important;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.3) !important;
}
.selected-city-toggle:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}
