/* src/styles/components/header-footer.css */
/* === ШАПКА === */
.app-header {
  background: #2c3e50;
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-left h1 {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
}

.header-left h1 a {
  color: white;
  text-decoration: none;
}

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

.user-info {
  text-align: right;
  margin-right: 12px;
}

.app-header .user-name {
  font-weight: bold;
  font-size: 1em;
}

.app-header .user-quota {
  font-size: 0.9em;
  opacity: 0.9;
  color: #fff;
}

/* Бейдж демо */
.demo-badge {
  background: #ff9800;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  cursor: default;
}

/* === ФУТЕР === */
.site-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 20px 0;
  margin-top: auto;
  font-size: 0.9em;
  color: #6c757d;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.site-footer a {
  color: #495057;
  text-decoration: none;
}

.site-footer a:hover {
  color: #212529;
  text-decoration: underline;
}

.footer-note {
  margin-top: 8px;
  color: #868e96;
}