/* Base Options Panel Style */
#optionsPanel {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 240px;
    padding: 5px;
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9000;
}

/* Dark Theme Overrides */
body.dark-theme #optionsPanel {
  background-color: #1e1e1e;
  color: #eee;
  border: 1px solid #444;
}

/* Header Styling */
#optionsHeader {
  width: 100%; /* Full width */
  padding: 10px;
  box-sizing: border-box; /* Ensure padding is included in width calculation */
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background-color: #222;
  color: #fff;
  border-radius: 10px 10px 0 0; /* Top rounded corners */
  margin: 0; /* Remove margin to avoid inset */
}

body.dark-theme #optionsHeader {
  background-color: #eee;
  color: #111;
}

/* Checkbox Layout */
#optionsPanel label {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

#optionsPanel input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
}
  
#optionsPanel,
#optionsHeader,
#optionsPanel label {
  transition: background-color 0.3s ease, color 0.3s ease;
}

#monthLabel {
  text-align: center; /* Center the text */
  font-size: 16px;
  margin-top: 5px; /* Add some spacing below the text */
}