/* General body */
/* 
The following define sitewide styles 
You can adjust the h-tags within reason (sizing)
*/
html {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: aliceblue;
}
body {
  color: #222;
  font-weight: 400;
}
/* h1 is usually reserved for custom styling. */
h1 {
  font-size: 40px;
  color: #0d47a1;
}
/* h2 is usually the top title and thus is centered */
h2 {
  font-size: 22px;
  color: #1565c0;
  font-weight: 400;
  text-align: center;
}
/* h3 is rarely centered. */
h3 {
  font-size: 22px;
  color: #1565c0;
  font-weight: 400;
}
/* user discretion */
h4 {
  font-size: 16px;
  color: #1565c0;
  font-weight: 400;
  margin: 11px 0px;
}
/* user discretion */
h5 {
  font-weight: 400;
  font-size: 14px;
  color: #1565c0;
}

a {
  color: #7499d1;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #3e70bb;
  text-decoration: underline;
}

/* Main app container */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto; /* centers horizontally */
  margin-bottom: 20px;
  background: white;
  padding: 25px 40px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(18, 18, 18, 0.1);
  font-weight: 400;
}

/* accordion styles - can likely be cleaned up */
.accordion {
  background: #007fff; /* default blue */
  color: #fff;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid transparent; /* invisible border */
  border-radius: 4px 4px 2px 2px;
  font-weight: 400;
  width: 100%;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  margin-top: 10px;
  margin-bottom: 0px;
}
.accordion:hover {
  background: #449fff; /* lighter blue on hover */
}
.accordion.active {
  background: #ccc; /* grey when active */
  color: #000;
}

/* accordion panel styling */
.panel {
  padding: 15px 20px;
  background: #f9fbfd;
  border: 1px solid #ddd;
  border-top: none; /* remove double border */
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  display: none;
}

/* Center text class. */
.center-text {
  text-align: center;
}

/* Upload section styling */
.upload-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  background-color: #f0f8ff;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.upload-box input[type="file"] {
  display: block;
  margin: 15px auto;
}

.upload-box button {
  padding: 8px 16px;
  background-color: #007fff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.upload-box button:hover {
  background-color: #005fa3;
}

/* Output box preformatted */
pre {
  background: #272822;
  color: #f8f8f2;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
  margin-top: 20px;
  font-size: 14px;
}

/* page specific stuff here. */
table {
  width: 100%;
  margin: 20px auto 0;
  font-size: 14px;
  border-collapse: separate;
  border-spacing: 0;
}

th,
td {
  padding: 8px;
  text-align: left;
  border-right: 1px solid #9c9c9c;
  border-bottom: 1px solid #9c9c9c;
}

/* left edge */
th:first-child,
td:first-child {
  border-left: 1px solid #9c9c9c;
}

/* header row */
thead th {
  background-color: #f5f5f5;
  border-top: 1px solid #9c9c9c;
}

/* rounded header corners */
thead th:first-child {
  border-top-left-radius: 5px;
}

thead th:last-child {
  border-top-right-radius: 5px;
}
