* {
  box-sizing: border-box;
}

.invert {
  filter: invert(1);
}
body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  background-color: #121212;
  color: #e7e9ea;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #e7e9ea;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.howler-app, .auth-page {
  flex: 1 0 auto;
}

.app-header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



.header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}

.app-header h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  color: #fff;
}




.app-header .divider {
  color: #666;

  font-weight: 300;
}

.app-header .subtitle {
  font-size: 1.2rem;
  color: #fff;

  margin: 0;
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  transition: all 0.2s ease;
  background-color: #cc0000;
  color: white;
  border: 1px solid #cc0000;
}

.header-actions a:hover {
  text-decoration: none;
  background-color: #e00000;
  border-color: #e00000;
}

.post-prompt,
#howlInput button,
.sidebar-btn,
.simple-panel button,
.simple-form button {
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.simple-form-button-link {
  display: inline-block;
  border: 1px solid #cc0000;

  padding: 0.8rem 1.2rem;
  background: #cc0000;
  color: #fff;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition: all 0.2s ease;
}

.simple-form-button-link:hover {
  background: #e00000;
  border-color: #e00000;
  color: #fff;
  text-decoration: none;
}

.app-footer {
  width: 100%;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: #fff;
}
.app-footer p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666666;
  letter-spacing: 1px;
  opacity: 0.6;
}

#legal-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#legal-links a {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}



#legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
