  .hour-slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Скрываем полосу прокрутки в Firefox */
  }
  
  /* Скрываем полосу прокрутки в Chrome/Safari */
  .hour-slider-container::-webkit-scrollbar {
    display: none;
  }
  
  .hour-slider {
    display: flex;
    gap: 8px;
    padding: 0 10px;
  }
  
  .hour-block {
    min-width: 80px;
    padding: 12px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  
  .hour-block:hover {
    background: #f8f8f8;
  }
  
  .hour-block.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
    box-shadow: var(--box-shadow);
  }
  
  .hour-range {
    font-size: 10px;
    margin-bottom: 6px;
    font-weight: 500;
  }
  
  .branch-label {
    font-size: 14px;
    line-height: 1.3;
  }