/* Çalışma Saatleri Bileşeni Stilleri */
.opening-hours-section {
  margin: 20px 0;
}

.opening-hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.opening-hours-icon {
  font-size: 24px;
}

.opening-hours-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

/* Çalışma saatleri listesi daha güzel ve düzenli görünüm için güncellendi */
.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opening-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px; /* Updated from 12px 16px */
  background: #f9fafb;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.opening-hour-row:hover {
  background: #f3f4f6;
  border-color: #d1d5db; /* Added */
  transform: translateX(2px);
}

/* Bugün vurgusunu daha belirgin ve mobil uygulamaya benzer hale getirdik - gradient, kalın kenarlık, gölge */
.opening-hour-row.today {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
  border: 2px solid #ff6b35;
  border-left: 5px solid #ff6b35; /* Added */
  font-weight: 600;
  position: relative;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3); /* Updated from 0.3 */
  transform: none;
  padding-left: 18px; /* Updated from 24px */
}

.opening-hour-row.today:hover {
  background: linear-gradient(135deg, #ffede3 0%, #ffd9c7 100%); /* Gradient values updated */
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); /* Updated from 0.4 */
  transform: translateY(-2px) translateX(2px); /* Updated transform */
}

/* Removed .opening-hour-row.today::before as it's no longer in updates. The border-left now handles the visual cue. */

/* Increase CSS specificity to override venue-styles.css conflicts */
.info-card-modern .opening-hours-list .opening-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f9fafb !important;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.info-card-modern .opening-hours-list .opening-hour-row.today {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%) !important;
  border: 2px solid #ff6b35;
  border-left: 5px solid #ff6b35;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.opening-hour-day {
  font-weight: 500;
  color: #374151;
  font-size: 15px;
  min-width: 100px;
}

/* Bugünkü gün ismini turuncu ve daha kalın yaptık */
.opening-hour-day.today {
  color: #ff6b35;
  font-weight: 700;
  font-size: 16px;
}

.info-card-modern .opening-hours-list .opening-hour-day.today {
  color: #ff6b35 !important;
  font-weight: 700 !important;
  font-size: 16px;
}

.opening-hour-time {
  color: #6b7280;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px; /* Added */
}

.opening-hour-time.closed {
  color: #ef4444;
  font-weight: 600;
}

.opening-hour-time.open-24h {
  color: #10b981;
  font-weight: 600;
}

/* Bugünkü saati koyu turuncu ve daha kalın yaptık */
.opening-hour-time.today {
  color: #ff5722;
  font-weight: 700;
  font-size: 16px;
}

.info-card-modern .opening-hours-list .opening-hour-time.today {
  color: #ff5722 !important;
  font-weight: 700 !important;
}

/* Removed previous commented-out styles related to today's highlighting */

/* Çalışma Saatleri Düzenleme Modal */
.opening-hours-editor {
  margin: 20px 0;
}

.day-editor {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

.day-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.day-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 15px;
}

.day-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.day-checkbox-group {
  display: flex;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  cursor: pointer;
}

.time-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.time-input-group {
  flex: 1;
}

.time-input-group label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.time-input-group input[type="time"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1f2937;
}

.time-separator {
  color: #9ca3af;
  font-weight: 600;
  padding-top: 20px;
}

.day-editor.disabled {
  opacity: 0.5;
}

.day-editor.disabled .time-inputs {
  pointer-events: none;
}

/* Opening Hours Modal */
.opening-hours-modal {
  background: white;
  padding: 0;
}

.opening-hours-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.opening-hours-modal-body {
  padding: 20px;
  max-height: 600px;
  overflow-y: auto;
}

.opening-hours-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid #e5e7eb;
}

.btn-hours-cancel {
  flex: 1;
  padding: 12px;
  border: 1px solid #d1d5db;
  background: white;
  color: #374151;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hours-cancel:hover {
  background: #f3f4f6;
}

.btn-hours-save {
  flex: 1;
  padding: 12px;
  border: none;
  background: #ff6b35;
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hours-save:hover {
  background: #ff5722;
}

.edit-hours-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.edit-hours-btn:hover {
  background: #ff5722;
}

.edit-hours-btn svg {
  width: 16px;
  height: 16px;
}
