/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  box-sizing: border-box;
}

body {
  font-size: 1.6rem; /* 16px */
  line-height: 1.5;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Variables */
:root {
  /*--primary-color: #007bff;*/
  /*--secondary-color: #dfdfdf;*/
  /*--success-color: #28a745;*/
  /*--danger-color: #dc3545;*/
  /*--warning-color: #ffc107;*/
  /*--info-color: #17a2b8;*/
  /*--light-color: #f1f1f1;*/
  /*--dark-color: #343a40;*/

  --color-silver: silver;

  --font-family-base: 'Arial', sans-serif;
  --font-size-base: 1.6rem; /* 16px */
  --line-height-base: 1.5;

  --max-width: 1500px;
}

/* Basic Elements */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 170%;
}

h2 {
  font-size: 2.4rem; /* 24px */
  margin-top: 3rem;
}

h3 {
  font-size: 2rem; /* 20px */
  margin-top: 2.5rem;
}

h4 {
  font-size: 1.8rem; /* 18px */
}

article p,
article ul {
  margin-bottom: 1rem;
}

article p,
article li {
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 170%;
}

article p a,
article li a {
  font-weight: bold;
}

a {
  color: black;
  text-decoration: underline;
}

a:hover {
  color: var(--dark-color);
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

img {
  max-width: 100%;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

nav ul li a {
  display: block;
  background-color: var(--light-color);
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--secondary-color);
}

th {
  background-color: var(--light-color);
  font-weight: 600;
  color: var(--dark-color);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Optional: Striped tables */
.table-striped tr:nth-child(even) {
  background-color: var(--light-color);
}

/* Optional: Bordered tables */
.table-bordered th,
.table-bordered td {
  border: 1px solid var(--secondary-color);
}

@media screen and (min-width: 576px) {
}

@media screen and (min-width: 768px) {
  /*
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  */
}

@media screen and (min-width: 992px) {
  article p,
  article li {
    /*font-size: 2rem;*/
  }

}

@media screen and (min-width: 1200px) {
}

@media screen and (min-width: 1400px) {
}
