:root {
  --mister-orange: #e24613;
  --mister-gray: #666;
  --mister-light-gray: #f3f3f3;
  --mister-border: #ccc;
}
.logo { margin: 20px auto; }
/* Body and General */
body {
  font-family: sans-serif;
  padding: 30px;
  max-width: 2000px;
  margin: auto;
  background: #f9f9f9;
}

.dashboard { display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}    

.logo { display: block;
  margin: 0 auto 10px;
  max-width: 180px;
}

.section { background: white;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 380px;
}

.form-center input[type="text"],
.form-center input[type="date"],
.form-center select,
.form-center textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--mister-border);
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.2 !important;
  margin-bottom: 16px;
  height: 48px;
  padding: 0 12px;
  outline: none;
  transition: border-color 0.2s;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-center select {
  background: #fff url("data:image/svg+xml;utf8,<svg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L7 7L13 1' stroke='%23999' stroke-width='2'/></svg>") no-repeat right 10px center/20px 12px;
  cursor: pointer;
  /* To match text input VERTICALLY: overwrite the vertical padding for select only */
  padding-top: 0;
  padding-bottom: 0;
}

/* On focus - highlight border for any field */
.form-center input[type="text"]:focus,
.form-center input[type="date"]:focus,
.form-center select:focus,
.form-center textarea:focus {
  border-color:var(--mister-orange);
}

/* Make sure textarea fills lines but is not too tall */
.form-center textarea {
  min-height: 84px;
  height: 96px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.5;
  resize: vertical;
}

.form-center {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.form-center label {
  margin-top: 8px;
  margin-bottom: 4px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  font-size: 1rem;
}
.form-center button {
  width: 100%;
  padding: 13px 0;
  margin-top: 22px;
  font-size: 1.1rem;
  font-weight: bold;
  background: var(--mister-orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.form-center button:hover {
  background: var(--mister-orange);
}
.notice {
  margin-bottom: 18px;
}


.form-center table {
  width: 100%;
  max-width: 700px;
  margin: 20px auto 0 auto;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
nav img {
  height: 50px;
}
nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
}
nav a:hover {
  color: var(--mister-orange);
}

h1 {
  color: var(--mister-orange);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  color: var(--mister-orange);
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

h3 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 8px;
  text-align: center;
}

img {
      max-width: 120px;
      margin-bottom: 10px;
}

/* Standard Table Styling */
table { 
  border-collapse: collapse; 
  margin-top: 20px; 
  width: 100%; 
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}

tr.total-row {
  background-color: var(--mister-orange) !important;
  font-weight: bold;
  color: white;
}

th {
  border: 1px solid var(--mister-border);
  padding: 12px 12px;
  text-align: center;
  background-color: var(--mister-orange);
  color: white;
  font-weight: bold;
  font-size: 16px;
}

td {
  border: 1px solid var(--mister-border);
  padding: 10px;
  text-align: center;
}

tr:nth-child(even) {
  background-color: var(--mister-light-gray);
}

tfoot td {
      font-weight: bold;
    }

a.back {
  display: block;
  margin-top: 30px;
  color: var(--mister-orange);
  font-weight: bold;
  text-decoration: none;
}


.metric-label { font-weight: bold; text-align: center; background: #fcd5b4; font-size: 16px; }
.metric-name { font-weight: bold; font-size: 14px; text-align: center; }
.section-title { font-size: 18px; font-weight: bold; margin-bottom: 15px; text-align: center; }
.highlight { font-weight: bold; }
.bold-row { font-weight: bold; }
.positive { color: green;}
.negative { color: red;}
.totals { font-weight: bold; background: #fafafa; }
.future-goal { color: #999999; font-style: italic; }
.controls { margin-bottom: 30px;}

/* Notice text below h1 */
.notice {
  margin-top: 6px;
  color: var(--mister-gray);
  font-size: 15px;
  text-align: center;
}

/* Calendar */
.brand {
  background: var(--mister-orange);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
}
#calendar { 
  max-width: 1250px;
  margin: 24px auto;
  padding: 10 16px;
}

/* Standard Button Styling */
button {
  background-color: var(--mister-orange);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #c73e11;
}

.button {
  display: inline-block;
  margin: 8px 6px;
  background-color: var(--mister-orange);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.back { display: inline-block; margin-top: 16px; color: #555; text-decoration: none; }
.back:hover { text-decoration: underline; }

tr.total-row {
      background-color: var(--mister-orange) !important;
      font-weight: bold;
      color: white;
}

.holiday-row {
  background: #f5f5f5;
  color: #222;
  font-size: 15px;
  text-align: left;
  border-top: 2px solid var(--mister-orange);
  padding: 22px 18px 16px 18px !important;   /* Extra top padding, regular sides/bottom */
}

.holiday-row .holiday-info {
  display: inline-block;
  vertical-align: middle;
}

label { font-weight: 600; }
    
select {
      padding: 8px;
      font-size: 16px;
      margin: 0 0 20px 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .form-center label,
  .form-center input,
  .form-center select,
  .form-center textarea,
  .form-center button {
    max-width: 98vw;
    min-width: unset;
    font-size: 16px;
    padding: 10px 6px;
  }
  nav {
    flex-direction: column;
    gap: 10px;
  }
  nav img {
    height: 40px;
  }
  nav a {
    font-size: 18px;
  }
}






