
/* calendar-style.css */
#disney-calendar-wrapper {
  font-family: 'Arial', sans-serif;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.calendar-header,
.calendar-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.calendar-header select,
.calendar-filters select {
  padding: 8px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  min-width: 200px;
}
.calenderButton {
  background: #0077cc;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
width:100%;
}
#calendar-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 10px;
text-align:center;
}
#prev-month {

}
#next-month {

}

#forceLeft {
float:left;
width:30%
}
#forceCenter {
text-align:center;
margin:0 auto;
float:left;
width:30%
}
#forceRight {
float:right;
width:30%
}

.day-labels, .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.day-labels .day {
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  background: #f0f0f0;
  border-radius: 4px;
}
.calendar-cell {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 5px;
  min-height: 80px;
  position: relative;
  border-radius: 8px;
}
.calendar-cell.blackout-day {
  background-color: #e0e0e0;
  color: #999;
  pointer-events: none;
  opacity: 0.6;
}
.cell-number {
  position: absolute;
  top: 5px;
  left: 5px;
  font-weight: bold;
}
.cell-events {
  margin-top: 20px;
  font-size: 0.85em;
}
.event-tag {
  display: block;
  margin-bottom: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  font-size: 0.75em;
  cursor: pointer;
}
.event-tag.holiday { background: #d32f2f; }
.event-tag.promotion { background: #0288d1; }
.event-tag.event { background: #388e3c; }
.empty {
  visibility: hidden;
}

/* Modal Styles */
.modal {
  display: none;
  position: absolute;
  z-index: 1000;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.modal-content {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
