/* Georgi’s Home Server – light gradient Apache index theme */
:root {
  --bg-top: #f0f1f3;
  --bg-bottom: #d9dbe0;
  --card: #ffffffee;
  --border: #c5c8ce;
  --text: #222;
  --muted: #6a6f7a;
  --accent: #1e3a8a;
  --radius: 10px;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

body > h1 {
  display: none;
}

table {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  background: var(--card);
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #e4e6ea;
  text-align: left;
}

th {
  background: #f6f7f9;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
}

tr:hover td {
  background: rgba(30, 58, 138, 0.07);
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

pre {
  width: 90%;
  max-width: 1000px;
  margin: 16px auto;
  color: var(--muted);
  font-size: 13px;
}

caption {
  caption-side: top;
  text-align: left;
  padding: 20px;
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
}

/* Footer section */
.ai-footer {
  width: 100%;
  display: flex; 
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0 40px;
}
.ai-footer img {
  height: auto;
  width: 18px;
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}
.ai-footer img:hover {
  opacity: 1;
}
