/* public/css/global.css */

/* Typography */
html, body {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: #1f2937; /* slate-800 */
  background-color: #f7fafc; /* light bg */
  margin: 0;
}

/* Normalize form controls */
button, input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  line-height: 1.3;
}

/* Simple container utility */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 16px;
}

/* Auth user badge injected by JS */
#auth-badge {
  position: fixed;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  z-index: 9999;
}
#auth-badge img {
  width: 28px; height: 28px; border-radius: 50%;
}
#auth-badge .name {
  font-weight: 600;
}
#auth-badge button {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 999px;
  padding: 4px 10px;
  cursor: pointer;
}
#auth-badge button:hover {
  background: #eef2f7;
}
