/* CSS for NetSTORM IDF tables */
/* 8/22 class Left added for gage metadata table */
/* 8/24 - add IDF map page styles
 
/* General Table Styling */
table, th, td {
  padding: 5px;
  text-align: center;
  font-family: serif;
  border-collapse: collapse;
}

th {
  background-color: skyblue;
  position: sticky;
  top: 0;
}

tr:hover {
  background-color: silver;
}

td {
  padding: 1px;
  text-align: right;
  white-space: nowrap;
}

/* Caption Styling */
caption {
  display: table-caption;
  text-align: left;
  font-weight: bold;
  width: 100%;
}

/* Button Styling */
.button {
  background-color: transparent;
  border: 2px solid #008CBA; /* Blue */
  padding: 6px 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: copy;
  font-family: serif;
  text-align: left;
}

/* Alignment Classes */
.left {
  text-align: left;
}

.Left1 td:nth-child(1) {
  text-align: left;
}

/* Media Query for Print */
@media print {
  .pagebreak {
    page-break-after: always;
  }
}

/* Link Styling */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Info Box Styling */
.info {
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
}

.info h4 {
  margin: 0 0 5px;
  color: #777;
}

/* Legend Styling */
.legend {
  line-height: 28px;
  color: #555;
}
