.dr-nav-left {
  position: relative; /* required for absolute positioning inside */
  z-index: 1000;
}

.dr-dropdown {
  position: relative;
  z-index: 1000;
}

.dr-dropdown-toggle {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  color: #000;
}

.dr-dropdown-menu {
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 200px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 9999;
}

.dr-dropdown:hover .dr-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dr-dropdown-menu li {
  padding: 10px 15px;
  cursor: pointer;
  white-space: nowrap;
}

.dr-dropdown-menu li:hover {
  background: #f5f5f5;
}

.dr-tab-scroll {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
  padding: 0 40px; /* spacing for arrows */
}

.dr-tab-container {
  overflow: hidden;
  width: 100%;
  padding-right: 15px;
}

.dr-tab-list {
  display: flex;
  gap: 25px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: 8px;
}

.dr-tab-list::-webkit-scrollbar {
  display: none;
}

.dr-tab {
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  padding-bottom: 5px;
  position: relative;
}

.dr-tab.active::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  bottom: 0;
  left: 0;
}

.dr-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  z-index: 2;
  cursor: pointer;
  transition: background 0.3s;
  padding: 15px 20px;
}

.dr-scroll-btn:hover {
  background: #f7f7f7;
}

.dr-scroll-btn.left {
  left: 0;
}

.dr-scroll-btn.right {
  right: 5px;
}

/* Fix for dropdown */
.dr-dropdown-toggle {
  padding: 7px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  color: #000;
}
.dr-tab-list a {
    font-size: .85rem !important;
    text-decoration: none !important;
}
svg.edr-left-svg {
    top: 7px;
    left: 14px;
    position: absolute;
}
svg.edr-right-svg {
    position: absolute;
    top: 7px;
    right: 10px;
}