/* ===== Global Styles for MixerDoctor ===== */

/* Base font stack */
html, body {
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Arial White", Arial, sans-serif;
  font-weight: bold;
  color: #111;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

/* Paragraphs & lists */
p, li {
  margin-bottom: 1em;
  color: #333;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover, a:focus {
  color: #004999;
  text-decoration: underline;
}

/* Buttons (if you have any) */
button, .btn {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5em 1em;
  border-radius: 4px;
  border: none;
  background-color: #0066cc;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
button:hover, .btn:hover {
  background-color: #004999;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  border: 1px solid #ddd;
  padding: 0.5em;
  text-align: left;
}
th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Forms */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.4em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* Footer text */
footer, footer p {
  color: #ffffff !important;
  text-align: center;   /* optional: centers the copyright */
  font-size: 0.9rem;    /* optional: slightly smaller */
}
/* Force the header H1 to white (very specific + important) */
body > header > h1 {
  color: #ffffff !important;
  /* optional: make it pop on busy backgrounds */
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
