/* zikpic-core.css: utilidades y layout base reutilizable */

/* Contenedores principales */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem!important;
}
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Grillas y secciones */
.series-grid, .novels-grid {
  display: grid;
  gap: 1.5em;
}

/* Header flex */
.header-zp-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-zp-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5em;

}

/* Tabs y scroll */
.series-tabs-scroll-wrap {
  position: relative;
  margin-bottom: 1.5em;
}
.series-tabs-scrollable {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 0 36px;
}
.tab-scroll-btn {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: auto;
  z-index: 10;
  background: rgba(255,255,255,0.97);
  border: none;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 1.5em;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #333;
  /* box-shadow: 0 0 6px 0 rgba(0,0,0,0.08); */
}

.tab-scroll-btn.is-hidden {
  display: none !important;
}
.tab-scroll-btn.left { left: 0; border-radius: 8px 0 0 8px; }
.tab-scroll-btn.right { right: 0; border-radius: 0 8px 8px 0; background: rgba(255,255,255,0.9); z-index: 2; }

/* Utilidades */
.text-center { text-align: center; }
.text-bold { font-weight: 700; }
.text-gray { color: var(--text-gray, #888); }

/* Puedes seguir migrando utilidades y layouts aquí */
