/* Minimal styles for Flask shell: admin + footer contact (React owns the rest) */
.shell-footer {
  max-width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 24px 24px 80px;
  width: 100%;
  position: relative;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  color: #6b7280;
}

.shell-footer a {
  color: #60a5fa;
}

.admin-toggle {
  position: fixed;
  bottom: 16px;
  right: 20px;
  background: #141d30;
  border: 1px solid #1e2d48;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  color: #a1a8b8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.admin-toggle:hover {
  border-color: #60a5fa;
  color: #e4e4ec;
}

.admin-section {
  margin-top: 16px;
  padding: 12px 16px;
  background: #141d30;
  border: 1px solid #1e2d48;
  border-radius: 8px;
}

.admin-refresh-btn {
  font-weight: 600;
  padding: 10px 24px;
  background: #1a2744;
  color: #e8eef6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  width: 100%;
  margin-bottom: 10px;
}

.admin-refresh-btn:hover:not(:disabled) {
  background: #2563eb;
}

.admin-refresh-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.admin-status {
  font-size: 12px;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  min-height: 20px;
  color: #a1a8b8;
}

.admin-status.loading {
  font-style: italic;
}

.admin-status.success {
  color: #5785eb;
}

.admin-status.error {
  color: #fb923c;
}
