.elementor-1229 .elementor-element.elementor-element-27bad4f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-a9dd5d0 */.custom-calendar-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-header button {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 6px;
}

.calendar-grid div {
  background: #f8f8f8;
  padding: 10px;
  border-radius: 6px;
  min-height: 80px;
}

.day.has-event {
  background: #e6f3ff;
  border: 1px solid #b3daff;
}

.event-link {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #0073aa;
  text-decoration: none;
}

.event-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .calendar-grid div {
    padding: 8px 4px;
    font-size: 12px;
  }
}
.day.has-event {
  background-color: #ffe6b3;
  border: 2px solid #ffb84d;
  box-shadow: 0 0 4px rgba(255,184,77,0.8);
}

.day.has-event span {
  font-weight: bold;
  color: #000;
}/* End custom CSS */