/* #codeInput,
#submitCode {
  font-size: 1em;
  font-weight: 400;
  font-family: "Avenir Next", Avenir, "Helvetica Neue";
  padding: 0 20px;
  border-radius: 32px;
  border: 1px solid #0f3b08;
} */

input {
  font-family: "Avenir Next", Avenir, "Helvetica Neue";
}

h2 {
  text-align: left;
  margin-block-end: 0.5rem;
  margin-block-start: 0.5rem;
  color: white;
  margin-left: 2rem;
  font-size: 1.3rem;
}

.sectionBlock {
  margin: 0px 0 0 2%;
  display: flex;
  flex-direction: column;
}
.sectionBlock:not(:first-child) {
  margin-top: 2em;
}
.sectionTitle {
  background-color: #207e11;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 1em;
  padding-left: 1rem;
}
.horizSection {
  display: flex;
  flex-direction: row;
  padding: 0.5rem 1rem 0px 1rem;
}
.tableSection {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
  padding-left: 1rem;
}

.sectionDetails {
  flex-basis: 25%;
  min-width: 10%;
  font-size: 0.8em;
  font-weight: 400;
  padding-left: 0.4rem;
  padding-right: 0.2rem;
  border-right: 1px solid green;
}
.sectionDetails:nth-child(3) {
  flex-grow: 2;
}
.sectionDetails:nth-child(4) {
  border-right: 0;
}
.sectionSub,
.sectionSubMonitoring {
  font-size: 1rem;
  line-height: 1.1rem;
  font-weight: 600;
  color: #207e11;
  text-align: left;
}
.sectionSubMonitoring {
  padding-left: 1.5rem;
}
.projectCharDetails {
  display: flex;
  flex-direction: column;
}

hr.custom {
  height: 1px;
  width: 100%;
  border: 10px;
  margin: 2px;
}

hr.custom.green {
  background: #207e11;
  height: 3px;
  border-radius: 1em;
  margin-right: -50px;
}
hr.custom.gray {
  background: gray;
}
.headerText {
  font-weight: 400;
  color: black;
}

.spaceBottom {
  margin-bottom: 2rem;
}

/* css table for dynamic data */
.dataTable {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-left: 1rem;
}

.grid-row {
  display: grid;
  grid-template-columns: 150px repeat(auto-fit, minmax(60px, 1fr));
  gap: 5px;
}

.cell {
  text-align: center;
  font-size: 0.9em;
  font-weight: 500;
  padding: 0rem 0.4rem;
}

.label {
  text-align: left;
  font-size: 0.8em;
  padding-left: 1rem;
  font-weight: 400;
  width: 150px;
}
.group-header {
  font-weight: bold;
  text-align: left;
  font-size: 0.9em;
  font-weight: 500;
  border-top: 1px solid #207e11;
}

.group-label {
  padding: 0.25rem 0.5rem;
}
/* Monitoring Table Styles */
.sectionSub {
  padding-right: 3rem;
}
.marshVegMonitTable {
  width: 95%;
  overflow-y: hidden;
  overflow-x: auto;
  color: black;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  border-top: 1px solid #207e11;
}
.monitoringTableHeader {
  text-align: left;
  max-width: fit-content;
  padding-left: 1rem;
  font-weight: 400;
  font-style: italic;
}

.marshVegMonitTable tr td:first-child {
  text-align: left;
  padding-left: 2rem;
  width: 14rem;
}
.marshVegMonitTable td:nth-child(n + 2),
.marshVegMonitTable th:nth-child(n + 2) {
  width: 150px;
}
.marshVegMonitTable th,
.marshVegMonitTable td {
  padding-right: 2rem;
}
.marshVegMonitTable tr:nth-child(even) {
  background-color: #207e1110;
}

.marshVegMonitTable tr:hover {
  background-color: #e6f3ff;
}

.monitoringSubHeader {
  margin-left: 2rem;
  margin-top: 1rem;
  color: #207e11;
  display: block;
}
.leftAlign {
  text-align: left;
  font-style: italic;
}
