
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  padding: 20px;
  margin: 0;
}
h1 {
  text-align: center;
  margin-bottom: 20px;
}
.controls, .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
button, select {
  padding: 8px 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  background-color: #fff;
}
button:hover, select:hover {
  background-color: #f1f1f1;
}
.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 10px;
}
.weekday {
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  background-color: #343a40;
  color: white;
  border-radius: 4px;
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.day {
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 110px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 6px;
  transition: background-color 0.3s;
}
.day .date {
  font-weight: bold;
  margin-bottom: 5px;
}
.day .priest {
  font-size: 0.9em;
  color: #555;
}
.day .month {
  font-size: 0.8em;
  color: #777;
}
.day .label {
  margin-top: 5px;
  font-size: 0.85em;
  font-weight: bold;
}
.day.feast {
  background-color: #fff8e1;
  border-left: 5px solid gold;
}
.day.tekufah {
  background-color: #e1f4ff;
  border-left: 5px solid dodgerblue;
}
.day.moedim {
  background-color: #fff3cd;
  border-left: 6px solid #ff9800;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.4);
}
.day.today {
  background-color: #e6ffe6;
  border: 2px solid #28a745;
}
@media print {
  body {
    background-color: white;
  }
  .controls, .tabs, .weekdays {
    display: none !important;
  }
  .day {
    page-break-inside: avoid;
  }
}
