/* labeller/css/gox-style.css (Updated to white theme with CSS variables) */

:root {
  --primary-color: #2c3e50;
  --secondary-color: #2980b9;
  --accent-color: #e74c3c;
  --text-color: #333;
  --bg-color: #ffffff;
}

/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base typography and colors */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
}

/* Navigation styles */
.navigation {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navigation a {
  color: var(--text-color);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.navigation a.active,
.navigation a:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

/* Container layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 16px 0;
  background-color: var(--bg-color);
}

footer .text-center {
  color: #777;
  font-size: 0.9rem;
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  color: var(--accent-color);
}

/* Responsive image utility */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Override any legacy background images */
body[style*="background"] {
  background: none !important;
}
