/* Takvim Stilleri */
.calendar-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.calendar-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.calendar-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.calendar-row {
  display: flex;
  width: 100%;
}

.calendar-header-row {
  font-weight: bold;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.calendar-cell {
  flex: 1;
  height: 80px;
  text-align: center;
  padding: 10px;
  position: relative;
  border-radius: 8px;
  margin: 2px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.calendar-header-cell {
  flex: 1;
  height: auto;
  padding: 10px 5px;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}

.calendar-cell:hover:not(.calendar-cell-inactive) {
  background-color: #f8f9fa;
}

.calendar-cell-inactive {
  color: #ccc;
  cursor: default;
}

.today {
  background-color: #f0f8ff;
  font-weight: bold;
  border: 2px solid #007bff;
}

.has-event {
  font-weight: bold;
  color: #007bff;
}

.past-event {
  color: #6c757d;
}

.event-dots {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.event-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #007bff;
}

.event-dot.past {
  background-color: #6c757d;
}

/* Etkinlik Detay Modal Stilleri */
.event-detail-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.event-detail-item.past-event {
  opacity: 0.7;
}

.event-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Diğer mevcut etkinlik stilleri korundu */