/* ============================================================================
   SIDEBAR ESQUERDA (Navegação)
   ========================================================================== */

.podcasts-sidebar-left {
  width: var(--sidebar-width-desktop);
  background: rgb(37,37,38);
  border-right: 1px solid rgba(66, 66, 69, 0.5);
  padding: 20px 16px;
  position: fixed;
  top: 80px;
  left: 0;
  bottom: auto;
  height: 100vh;
  overflow-y: auto;
  z-index: 98;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  will-change: transform;
}

.sidebar-title{
  font-size: 1.4rem;
  font-weight: 400;
  color: #b8b8b8;
  margin-bottom: 30px; 
  margin-top: 10px;
  text-align: left 
}

.podcasts-sidebar-left .sidebar-search {
  margin-bottom: 38px;
  margin-top: 22px;
  position: relative;
  pointer-events: auto !important;
  width: 100%;
}

.podcasts-sidebar-left .sidebar-search input {
  pointer-events: auto !important;
}

.podcasts-sidebar-left .search-box {
  width: 100% !important;
  padding: 8px 10px 8px 35px !important;
  background: #2c2c2e !important;
  background-color: #2c2c2e !important;
  border: 1px solid rgba(66, 66, 69, 0.6) !important;
  border-radius: 5px !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  outline: none !important;
  transition: var(--transition-smooth) !important;
  position: relative !important;
  z-index: 2 !important;
  pointer-events: auto !important;
  cursor: text !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  overflow-clip-margin: auto !important;
  -webkit-appearance: textfield !important;
  appearance: textfield !important;
}

.podcasts-sidebar-left .search-box:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.podcasts-sidebar-left .search-box:focus {
  border-color: var(--pod-accent);
  background: #333335;
  box-shadow: 0 0 0 3px rgba(153, 102, 204, 0.15);
}

.podcasts-sidebar-left .search-icon {
  position: absolute !important;
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #b8b8b8 !important;
  pointer-events: none !important;
  font-size: 1rem !important;
  z-index: 1 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.podcasts-sidebar-left .sidebar-nav {
  margin-bottom: 32px;
}

.podcasts-sidebar-left .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.podcasts-sidebar-left .podcast-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #a1a1a6;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  font-weight: 500;
}

.podcasts-sidebar-left .podcast-nav-item:hover {
  background: rgba(178, 177, 179, 0.25);
}

.podcasts-sidebar-left .podcast-nav-item.active {
  background: rgba(178, 177, 179, 0.25);
}

.podcasts-sidebar-left .podcast-nav-item i {
  font-size: 1.1rem;
  width: 28px;
}

/* Overlay para sidebar mobile */
.podcasts-overlay {
  position: fixed;
  top: 155px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 97;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(4px);
}

body.podcasts-sidebar-open .podcasts-overlay {
  opacity: 1;
  visibility: visible;
}

.podcasts-sidebar-left::-webkit-scrollbar {
  width: 6px;
}

.podcasts-sidebar-left::-webkit-scrollbar-track {
  background: var(--pod-dark-secondary);
}

.podcasts-sidebar-left::-webkit-scrollbar-thumb {
  background: #424245;
  border-radius: 3px;
}

