/* 
 * Custom application styles
 * Add your custom styles below. These will be imported by application.css
 */

/* Simple CSS overrides */
:root {
  --width: 100%;
  --responsive-width: 95%;
  /* Smaller font sizes */
  --font-size: 0.9rem;
  --line-height: 1.4;
  /* Smaller spacing */
  --spacing: 0.75rem;
  /* Adjust headings */
  --h1-font-size: 1rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.3rem;
  --h4-font-size: 1.1rem;
  --h5-font-size: 1rem;
  --h6-font-size: 0.9rem;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  display: block;
  background: white;
  font-size: var(--font-size);
}

body > header,
body > nav,
body > main,
body > footer {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

article, aside, dialog, footer, header, main, section {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.75rem;
}

/* Smaller UI elements */
input, select, button, textarea {
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
}

table {
  font-size: 0.85rem;
}

th, td {
  padding: 0.4rem 0.6rem;
}

nav {
  padding: 0.5rem 0;
}

nav a {
  margin: 0 0.5rem;
  font-size: 0.9rem;
}