
.calendar-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
#current-month{
	font-size:1.5rem;
	margin-bottom:0px;
}
.calendar-container button {
  background-color: var(--bg-primary);
  color: white;
  border: none;
  padding: 6px 15px;
  cursor: pointer;
  border-radius: 4px;
}

.calendar-container button:hover {
  background-color: #0056b3;
}

.calendar-container #view-mode, #filter-category {
        width: auto;
}

.calendar-container table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-container thead tr {
  background-color: #f0f0f0;
}

.calendar-container td, th {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.calendar-container td {
  height: 100px;
  position: relative;
}

.calendar-container .event-label {
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
  display: none;
}

.calendar-container .present { color: green; display: block; }
.calendar-container .absent { color: red; display: block; }
.calendar-container .holiday { color: blue; display: block; }
