/* Events List View Styles */

/* View switcher buttons */
.view-btn {
  color: #6b7280;
  background: white;
  transition: all 0.2s ease;
}

.view-btn:hover {
  background: #f3f4f6;
}

.view-btn.active-view {
  background: var(--primary-color);
  color: white;
}

/* Custom scrollbar for events container */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Focus styles for form elements */
.filter-input:focus {
  outline: none;
  ring: 2px;
  ring-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Prevent body overflow when in list view */
.events-list-page {
  overflow: hidden;
}
