/*
 * 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 will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Responsive Header Navigation */
.responsive-desktop-nav {
  display: none;
}

.responsive-mobile-toggle {
  display: inline-flex;
}

.responsive-mobile-menu {
  display: none;
}

.responsive-mobile-menu.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .responsive-desktop-nav {
    display: flex;
  }

  .responsive-mobile-toggle,
  .responsive-mobile-menu,
  .responsive-mobile-menu.is-open {
    display: none;
  }
}

/* Settings Navigation */
.settings-nav-item {
  color: #64748b;
  background-color: transparent;
}

.settings-nav-item:hover {
  background-color: #f1f5f9;
  color: #334155;
}

.settings-nav-active {
  background-color: #e0f2f1;
  color: #00695c;
}

.settings-nav-active:hover {
  background-color: #b2dfdb;
}

/* Trix Editor */
trix-editor {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
}

trix-toolbar .trix-button-group {
  margin-bottom: 0;
}

trix-editor:focus {
  outline: none;
  border-color: #00695c;
  box-shadow: 0 0 0 3px rgba(0, 105, 92, 0.1);
}
