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

.app-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 95%;
  max-width: none;
  margin: 1rem auto 0;
  padding: 0 0 0.85rem;
  box-sizing: border-box;
  border-bottom: 1px solid #d7e0eb;
}

.app-header__brand {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
  background: linear-gradient(120deg, #0f1b2d 20%, #02a890 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.18s;
}

.app-header__brand:hover {
  opacity: 0.8;
  text-decoration: none;
}

.app-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.app-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid #e2e9f2;
  border-radius: 10px;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  background: #ffffff;
  color: #3c4a60;
  box-shadow: 0 1px 2px rgba(15, 27, 45, 0.05), 0 2px 8px rgba(15, 27, 45, 0.04);
  transition: border-color 0.18s, color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.app-header__btn svg {
  flex-shrink: 0;
}

.app-header__btn:hover {
  border-color: rgba(0, 194, 168, 0.45);
  color: #02a890;
  background: rgba(0, 194, 168, 0.08);
  box-shadow: 0 8px 30px rgba(28, 55, 90, 0.10), 0 2px 8px rgba(28, 55, 90, 0.06);
  transform: translateY(-1px);
  text-decoration: none;
}
