#simple-event-sheets-container ol.circle-bullets {
  list-style-type: none;
}

#simple-event-sheets-container ol.circle-bullets-inner {
  list-style-type: disc;
  padding-left: 2em;
  padding-bottom: 1em;
}

#simple-event-sheets-container h2 {
  line-height: 1em;
}

/* Existing list view styles */
.circle-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.circle-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.circle-bullets li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007cba;
  font-weight: bold;
}

.circle-bullets-inner {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 20px;
}

.circle-bullets-inner li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.circle-bullets-inner li:before {
  content: "◦";
  position: absolute;
  left: 0;
  color: #666;
}

/* View Toggle Styles */
.simple-events-view-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.simple-events-view-toggle .view-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.simple-events-view-toggle .view-btn.active {
  background: #007cba;
  color: white;
  border-color: #007cba;
}

.simple-events-view-toggle .view-btn:hover {
  background: #f0f0f0;
}

.simple-events-view-toggle .view-btn.active:hover {
  background: #005a87;
}

/* Calendar Styles */
.simple-events-calendar-container {
  margin-bottom: 20px;
}

.simple-events-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.simple-events-calendar-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.simple-events-calendar-nav button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.simple-events-calendar-nav button:hover {
  background: #f0f0f0;
}

.simple-events-calendar-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.simple-events-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.simple-events-calendar-day-header {
  background: #f8f9fa;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #666;
  font-size: 14px;
}

.simple-events-calendar-day {
  background: white;
  min-height: 100px;
  padding: 8px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.simple-events-calendar-day:hover {
  background: #f8f9fa;
}

.simple-events-calendar-day.other-month {
  background: #f8f9fa;
  color: #ccc;
}

.simple-events-calendar-day.today {
  background: #e7f3ff;
  border: 2px solid #007cba;
}

.simple-events-calendar-day.has-events {
  background: #fff3cd;
}

.simple-events-calendar-day.has-events:hover {
  background: #ffeaa7;
}

.simple-events-day-number {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}

.simple-events-calendar-events {
  font-size: 12px;
}

.simple-events-calendar-event {
  background: #007cba;
  color: white;
  padding: 2px 4px;
  margin: 1px 0;
  border-radius: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 11px;
}

.simple-events-calendar-event:hover {
  background: #005a87;
}

.simple-events-calendar-event.multi-event {
  background: #28a745;
}

.simple-events-calendar-event.multi-event:hover {
  background: #1e7e34;
}

.simple-events-event-count {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
  font-style: italic;
}

/* Modal Styles */
.simple-events-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.simple-events-modal.active {
  display: flex;
}

.simple-events-modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.simple-events-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.simple-events-modal-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.simple-events-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-events-modal-close:hover {
  color: #333;
  background: #f0f0f0;
  border-radius: 50%;
}

.simple-events-event-details {
  margin-bottom: 15px;
}

.simple-events-event-details h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 16px;
}

.simple-events-event-details p {
  margin: 5px 0;
  color: #666;
  line-height: 1.4;
}

.simple-events-event-link {
  color: #007cba;
  text-decoration: none;
}

.simple-events-event-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-events-calendar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .simple-events-calendar-nav {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .simple-events-calendar-title {
    order: 1;
    align-self: center;
    font-size: 20px;
  }

  .simple-events-calendar-grid {
    font-size: 12px;
  }

  .simple-events-calendar-day {
    min-height: 80px;
    padding: 4px;
  }

  .simple-events-calendar-event {
    font-size: 10px;
    padding: 1px 2px;
  }

  .simple-events-day-number {
    font-size: 12px;
  }

  .simple-events-view-toggle {
    justify-content: center;
  }

  .simple-events-modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 480px) {
  .simple-events-calendar-day {
    min-height: 60px;
    padding: 2px;
  }

  .simple-events-calendar-event {
    font-size: 9px;
    padding: 1px;
  }

  .simple-events-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
    opacity: 0.6;
  }

  .simple-events-day-number {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .simple-events-calendar-nav button {
    padding: 6px 8px;
    font-size: 12px;
  }

  .simple-events-calendar-title {
    font-size: 18px;
  }
}
