body {
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #2c3e50;
}

.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
}

select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

thead {
  background: #2c3e50;
  color: #fff;
}

th, td {
  padding: 14px;   /* Increased row height */
  border-bottom: 1px solid #ddd;
  text-align: center;
}

tbody tr:hover {
  background: #f1f8ff;
}

.summary {
  text-align: center;
  margin: 20px 0;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  margin-top: 8px;
}

.low {
  background: #27ae60;
  color: #fff;
}

.medium {
  background: #f39c12;
  color: #fff;
}

.high {
  background: #e74c3c;
  color: #fff;
}

button {
  display: block;
  margin: 20px auto;
  padding: 12px 20px;
  background: #2980b9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #1f6391;
}

.disclaimer {
  margin-top: 25px;
  padding: 15px;
  background: #fff3cd;
  border-left: 5px solid #f39c12;
  font-size: 14px;
}
/* Fix Select Day dropdown visibility */
#daySelect {
    width: 100%;
    min-height: 52px;              /* Clear row height */
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    background-color: #ffffff;
    border: 2px solid #2c3e50;     /* Strong visible border */
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

/* On focus (when clicked) */
#daySelect:focus {
    border-color: #2980b9;
    box-shadow: 0 0 0 2px rgba(41,128,185,0.25);
}

/* Dropdown arrow visibility */
#daySelect option {
    font-size: 16px;
    padding: 10px;
}
