body { 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
  background-color: #f4f5f7; 
  color: #172b4d; 
  padding: 20px; }
.container {  
  max-width: 100%; 
  margin: 0 auto; 
  background: #fff; 
  padding: 30px; 
  border-radius: 8px; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
h2 { 
  color: #005073; 
  border-bottom: 2px solid #ebecf0; 
  padding-bottom: 10px; 
  margin-top: 0; }
.form-group { margin-bottom: 15px; }
label { 
  display: block; 
  font-weight: 600; 
  margin-bottom: 5px; 
  color: #42526e; }
input[type="text"], select, input[type="number"], input[type="date"] { 
  width: 100%; 
  padding: 10px; 
  border: 2px solid #dfe1e6; 
  border-radius: 4px; 
  font-size: 14px; 
  box-sizing: border-box; }
input[readonly] { 
  background-color: #eee; 
  color: #555; 
  cursor: not-allowed; }
.filter-row { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
  background: #f9f9f9; 
  padding: 15px; 
  border-radius: 4px; 
  margin-bottom: 20px; 
  border: 1px solid #eee; }
.filter-col { 
  flex: 1; 
  min-width: 200px; }
.hidden { display: none; }
.date-preview { 
  margin-top: 8px; 
  font-size: 13px; 
  color: #005073; 
  font-weight: bold; 
  background: #e6f3fa; 
  padding: 8px; 
  border-radius: 4px; 
  border: 1px solid #bce0fd; }
button { 
  border: none; 
  padding: 12px 24px; 
  border-radius: 10px; 
  font-weight: bold; 
  cursor: pointer; 
  font-size: 16px; 
  color: white; 
  background-color: #0052cc; }
button:hover { transform: scale(1.05); background-color: #0065ff; border: 1px solid black; box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75); }
.status-log { 
  background: #172b4d; 
  color: #ebecf0; 
  padding: 15px; 
  border-radius: 4px; 
  margin-top: 20px; 
  font-family: monospace; 
  font-size: 13px; 
  max-height: 400px; 
  overflow-y: auto; 
  border: 1px solid #091e42; }
.log-line { 
  margin-bottom: 4px; 
  border-bottom: 1px solid #253858; 
  padding-bottom: 2px; }
.log-success { color: #79f2c0; }
.log-error   { color: #ff5630; font-weight: bold; }
.loading-banner { 
  background: #e3fcef; 
  color: #006644; 
  border: 1px solid #57d9a3; 
  margin-top: 20px; 
  padding: 15px; 
  border-radius: 4px; 
  font-weight: bold; }
table { 
  width: 100%; 
  border-collapse: collapse; 
  margin-top: 20px; 
  font-size: 11px; }
th { 
  background: #091e42; 
  color: white; 
  text-align: left; 
  padding: 8px; }
td { 
  border-bottom: 1px solid #dfe1e6; 
  padding: 6px; }
tr:nth-child(even) { background-color: #f4f5f7; }
.download-btn { 
  display: inline-block; 
  background-color: #36b37e; 
  color: white; 
  padding: 10px 20px; 
  text-decoration: none; 
  border-radius: 4px; 
  margin-top: 15px; 
  font-weight: bold; 
  margin-right: 10px; }
.download-btn.csv { background-color: #2e7d32; }

/* Information Pop-over Styles */

a.BTNtrigger {
  border: none; 
  padding: 0px 12px;
  border-radius: 10px; 
  font-weight: bold; 
  cursor: pointer; 
  font-size: 16px; 
  color: white; 
  background-color: #8c008c;
  height: 32px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  float: right;
  margin-right: 5px;
    text-decoration: none; }
a.BTNtrigger:hover { transform: scale(1.05); background-color: #b300b3; border: 1px solid black; box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75); }
.info-trigger {
  color: white; background-color: #0052cc;
  width: 32px !important;
  height: 32px !important;
  border-radius: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
  font-weight: bold;
  font-style: italic;
  font-family: serif;
  float: right; }
.info-trigger:hover { transform: scale(1.1);}
#infoOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(9, 30, 66, 0.54);
    z-index: 1000;
    backdrop-filter: blur(2px); }
.info-modal {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    padding: 24px;
    display: flex;
    flex-direction: column; }
.info-modal-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  border-bottom: 1px solid var(--border-color); 
  padding-bottom: 5px; 
  margin-bottom: 5px; }
.info-modal-content { overflow-y: auto; flex-grow: 1; }
.close-modal { 
  cursor: pointer; 
  font-size: 24px; 
  color: #6b778c; 
  border: none; 
  background: none; }
.datapoint-row { padding: 5px 0; border-bottom: 1px solid #f4f5f7; }
.datapoint-name { 
  font-weight: bold; 
  color: blue; 
  font-size: 13px; }
.webEx { 
  font-weight: normal; 
  font-size: 9pt; 
  color: grey; }
.datapoint-def { 
  font-size: 14px; 
  color: #42526e; }