/* HEADER AND FOOTER BOILER PLATE */

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  background-image: url("Images\AndersonHospitalLogo.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-attachment: fixed;
  background-size: 15%;

  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
  display: none;
}

.header:hover {
  transform: scale(1.05);
}

.header {
  background-image: linear-gradient(to right, skyblue, cornflowerblue);
  border-radius: 15px;
  width: 90%;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.header-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

h1 {
  color: slategray;
  margin: 0.5em 0;
  text-align: center;
  padding: 25px;
  background-color: white;
  border-radius: 5px;
}

footer.footer {
  background-image: linear-gradient(to right, skyblue, cornflowerblue);
  color: white;
  text-align: center;
  padding: 15px 10px;
  margin-top: auto;
  width: 100%;
}
footer.footer p {
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

/* END HEADER AND FOOTER BOILER PLATE */

/* END GENERIC BOILER PLATE */
/* Specific Page Styling Below Here */

/* Main Body Styling */

.MainBody {
  width: 90%;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(
    to right,
    rgb(77, 77, 79),
    rgb(132, 130, 164)
  );
  border-radius: 10px;
  display: block;
  text-align: center;
}

.MainBody h2 {
  color: #ffffff;
  margin: 0 auto 20px auto; /* centers horizontally */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  width: 90%;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  padding: 14px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.AllLevels {
  --lvl-start: #10b981;
  --lvl-end: #34d399;

  color: #052e16;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-align: center;

  width: 90%;
  margin: 0 auto 12px;
  padding: 12px 16px;
  border-radius: 12px;

  background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0) 40%
    ),
    linear-gradient(to bottom right, var(--lvl-start), var(--lvl-end));
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 6px 14px rgba(0, 0, 0, 0.18);

  letter-spacing: 0.02em;
}

.img-wrap {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.image {
  display: block;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  margin: 0;
  float: none;
}

.placeholder-link {
  color: rgb(240, 133, 26);
  text-decoration: underline;
  cursor: not-allowed;
  pointer-events: none;
}

.working-link {
  color: rgb(72, 129, 235);
  text-decoration: underline;
  cursor: pointer;
  pointer-events: auto;
  font-weight: bold;
}

.working-link visited {
  color: rgb(72, 129, 235);
}
.working-link:hover {
  color: rgb(26, 84, 245);
  font-weight: bolder;
}
/* END Link Styling */

/*  Dimension settings Boiler Plate*/

@media (min-width: 768px) {
  .header,
  .StartTable th {
    font-size: 0.95em;
  }
  .StartTable td {
    font-size: 0.85em;
  }

  @media (min-width: 1024px) {
    .StartTable th {
      font-size: 0.95em;
    }
    .StartTable td {
      font-size: 0.85em;
    }
  }
}
/* END Dimension settings Boiler Plate */

/* REPORT FORM*/

#bug-report-form,
label {
  display: block;
  width: 90%;
  margin: 10px auto;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 18px;
  color: #c9c4c4;
}

#bug-report-form textarea {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
  resize: vertical;
  border-radius: 8px;
}

select {
  width: 90%;
  padding: 12px 16px;
  font-size: 18px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #052e16;
  background: linear-gradient(#7bcce9, #0a88db);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-size: 14px;
}

select:hover,
select:focus {
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  outline: none;
}

select option[disabled] {
  color: rgb(160, 160, 160);
  font-style: italic;
}

subsection-select {
  width: 90%;
  padding: 12px 16px;
  font: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #052e16;
  background: linear-gradient(#7bcce9, #0a88db);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-size: 14px;
}

#subsection-wrapper {
  margin-top: 25px;
  margin-bottom: 25px;
}

#SubmitButton {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  border-width: 3px;
  border-radius: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#SubmitButton:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
