/* ===== UI COMPONENTS - SIDEBAR ===== */

/* ===== UNIVERSAL SIDEBAR STYLES ===== */
/*
 * Stilul universal pentru sidebar-uri
 * Folosit în: calendar modal, task manager, etc.
 */

.calendar-modal-sidebar {
  background: rgba(15, 20, 25, 0.9);
  border-right: 1px solid #2d3748;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #4a5568 transparent;
  position: relative;
}

/* ===== SIDEBAR SCROLLBAR STYLES ===== */
.calendar-modal-sidebar::-webkit-scrollbar {
  width: 6px;
}

.calendar-modal-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.calendar-modal-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4fc3f7, rgba(79, 195, 247, 0.5));
  border-radius: 3px;
  transition: all 0.3s ease;
}

.calendar-modal-sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4fc3f7, #00d4ff);
  box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .calendar-modal-sidebar {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .calendar-modal-sidebar {
    padding: 12px;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  .calendar-modal-sidebar {
    border-right-color: #4fc3f7;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .calendar-modal-sidebar::-webkit-scrollbar-thumb {
    transition: none;
  }
} 