/* Oxları və menyunu bir yerdə saxlayan əsas qutu */
.tab-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.tab-menu {
  display: flex;
  gap: 5px;
  padding: 12px 10px;
  border-bottom: 1px solid #f2f4f7;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  scroll-behavior: smooth; /* Oxa basanda hamar sürüşməsi üçün */
}

/* Skrol xəttini gizlət */
.tab-menu::-webkit-scrollbar {
  display: none;
}
.tab-menu {
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

.tab {
  color: #828282;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;        
  white-space: nowrap;   
  display: inline-block; 
}

.tab.active {
  background-color: #ffffff;
  color: #ff8800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tab:hover, .tab.active:hover {
    background-color: #f5f5f5;
}

/* YUMURU DAİRƏVİ OX DÜYMƏLƏRİ */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%; /* Tam yumuru edir */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 10;
  transition: opacity 0.2s ease;
  color: #828282;
}

.nav-btn:hover {
  background-color: #ffffff;
  color: #ff8800;
}

/* Sol və Sağ düymələrin yerləşməsi */
.left-btn {
  left: 5px;
  display: none; /* Başlanğıcda sol tərəf bağlı olduğu üçün gizlədirik */
}

.right-btn {
  right: 5px;
}



.tab-menu {
  display: flex;
  gap: 5px;
  padding: 12px 10px 12px;
  border-bottom: 1px solid #f2f4f7;
  overflow-x: auto;
}

.tab-svg {
    display: flex;
    align-items: center;
    gap: 5px;
}





body.dark-mode .tab.active {
  background-color: #ebedf0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}


.tabs-container {
  width: 100%;
  background-color: #ffffff;
  margin: 12px auto;
  border-radius: 12px;
  /*box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  font-family: -apple-system, system-ui, sans-serif;*/
}

.tabs-menu {
  display: flex;
  align-items: center;
  padding: 2px;
  height: 48px;
  position: relative;
}

.tabs {
  font-size: 15px;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #828282;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.tabs:hover {
  color: #050505;
}

.underline-style {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ebedf0;
    height: 48px;
}

.active-underline {
  color: #050505 !important;
  /*font-weight: 700;*/
  position: relative;
}

.active-underline:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 10px;
  right: 10px;
  height: 3.5px;
  background-color: #ff8800;
  border-radius: 4px;
}

.tabs:focus:before, .tabs:hover:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 10px;
    right: 10px;
    height: 3.5px;
    background-color: rgba(131, 102, 86, .12);
    border-radius: 4px;
}


.right-icon {
  margin-left: auto;
  color: #ff8800;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.right-icon:hover {
  background-color: #f0f2f5;
}

.albums-header-panel { display: flex; justify-content: center; margin-bottom: 15px; gap: 6px;}
.albums-tabs { display: flex; background-color: #f5f5f5; padding: 4px; border-radius: 20px; gap: 4px; }
.tab-btn { padding: 6px 14px; border-radius: 16px; text-decoration: none; font-size: 14px; font-weight: 500; color: #65676b; background-color: transparent; transition: all 0.2s ease; text-align: center; }
.tab-btn:hover { color: #050505; }
.tab-btn.active { background-color: #ffffff; color: #f78411; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
