/* Sidebar Menu - RTVC */
.side-rtvc-menu {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 280px;
  height: fit-content;
}

.side-rtvc-menu-title {
  color: #888;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.side-rtvc-menu-title strong {
  font-weight: bold;
}

.side-rtvc-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-rtvc-menu-item {
  margin-bottom: 8px;
}

.side-rtvc-menu-link {
  display: flex;
  align-items: center;
  padding: 5px;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.side-rtvc-menu-link:hover {
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
}

.side-rtvc-link-active {
  /*background-color: #e6f2ff;*/
}

.side-rtvc-link-active:hover {
  background-color: #e6f2ff;
}

.side-rtvc-link-active strong,
.side-rtvc-link-active .side-rtvc-menu-text {
  font-weight: bold;
}

.side-rtvc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
  flex-shrink: 0;
}

.side-rtvc-icon-arrow {
  /*background-color: #888;*/
  font-size: 20px;
}

.side-rtvc-icon-toggle {
  background-color: #c7013d;
  font-weight: bold;
  /* Área clickeable más grande para accesibilidad */
  padding: 4px;
  min-width: 22px;
  min-height: 22px;
}
.side-rtvc-icon-toggle:hover {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* Items activos cambian el color del icono */
.side-rtvc-menu-item.side-rtvc-active > .side-rtvc-menu-link .side-rtvc-icon-arrow {
  /*background-color: #888;*/
}

.side-rtvc-menu-item.side-rtvc-expanded > .side-rtvc-menu-link .side-rtvc-icon-toggle {
  background-color: #4b4b4b;
}

/* Submenús */
.side-rtvc-submenu {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.side-rtvc-submenu-open {
  max-height: 2000px;
}

.side-rtvc-submenu:not(.side-rtvc-submenu-open) {
  max-height: 0;
}

.side-rtvc-submenu-level-1 .side-rtvc-menu-link {
  padding-left: 12px;
}

.side-rtvc-submenu-level-2 .side-rtvc-menu-link {
  padding-left: 24px;
}

/* Menu text */
.side-rtvc-menu-text {
  flex: 1;
}

/* Evitar conflictos con Bootstrap */
.side-rtvc-menu a,
.side-rtvc-menu a:hover,
.side-rtvc-menu a:focus,
.side-rtvc-menu a:active {
  text-decoration: none !important;
}

/* Accesibilidad — focus visible en sidebar */
.side-rtvc-menu-link:focus-visible {
  outline: 2px solid var(--color-primary, #c7013d);
  outline-offset: 2px;
  background-color: #f5f5f5;
}

.side-rtvc-menu ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.side-rtvc-menu li {
  list-style: none !important;
}

/* Layout principal con sidebar */
.layout-sidebar {
  padding-right: 8px;
  padding-left: 8px;
}

.layout-content {
  padding-left: 20px;
  min-width: 0;
}

/* Ajustes para el sidebar */
.layout-sidebar .side-rtvc-menu {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  font-size: 15px;
  padding: 20px 8px;
}

/* Sidebar derecho — "Lo más visto" */
.layout-sidebar-right {
  padding-left: 20px;
}

.most-viewed-block {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.most-viewed-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #c7013d;
  margin-bottom: 1.25rem;
}

.most-viewed-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.most-viewed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.most-viewed-item:last-child {
  border-bottom: none;
}

.most-viewed-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-color: #3366cc;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.most-viewed-link {
  font-size: 14px;
  line-height: 1.4;
  color: #4b4b4b;
  text-decoration: none;
}

.most-viewed-link:hover {
  color: #0943b5;
  text-decoration: underline;
}

/* Responsive - en móvil el sidebar va arriba */
@media (max-width: 991px) {
  .layout-sidebar {
    display: none;
  }

  .layout-content {
    padding-left: 15px;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .layout-sidebar-right {
    padding-left: 15px;
  }

  .most-viewed-block {
    position: static;
    max-height: none;
  }
}

@media (max-width: 767px) {
  .layout-sidebar,
  .layout-content,
  .layout-sidebar-right {
    padding-left: 0;
    padding-right: 0;
  }
}
