/* Paginación global del theme. Reutilizable en cualquier módulo. */
.theme-pagination{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:14px;padding:12px 14px;border:1px solid rgba(148,163,184,.12);border-radius:16px;background:rgba(255,255,255,.025);}
.theme-pagination-info{color:var(--text-soft);font-size:13px;font-weight:800;}
.theme-pagination-actions{display:flex;align-items:center;gap:10px;}
.theme-pagination-numbers{display:flex;align-items:center;justify-content:center;gap:6px;flex-wrap:wrap;}
.theme-page-number{min-width:34px;height:34px;padding:0 10px;border:1px solid rgba(91,170,224,.28);border-radius:999px;background:rgba(10,14,22,.52);color:var(--text);font-size:13px;font-weight:900;line-height:1;cursor:pointer;transition:.18s ease;}
.theme-page-number:hover{border-color:rgba(91,170,224,.65);background:rgba(91,170,224,.12);transform:translateY(-1px);}
.theme-page-number.is-active,.theme-page-number:disabled{border-color:rgba(91,170,224,.85);background:rgba(91,170,224,.18);color:#fff;cursor:default;transform:none;}
.theme-pagination-ellipsis{min-width:18px;text-align:center;color:var(--muted);font-weight:900;}
@media(max-width:720px){.theme-pagination{align-items:stretch;flex-direction:column;}.theme-pagination-actions{justify-content:space-between;flex-wrap:wrap;}.theme-pagination-actions .btn{flex:1;}.theme-pagination-numbers{order:3;width:100%;justify-content:center;}.theme-page-number{min-width:32px;height:32px;}}

/* Light mode */
body.light .theme-pagination{background:#fff;border-color:rgba(11,46,93,.12);box-shadow:0 12px 28px rgba(11,46,93,.06);}
body.light .theme-pagination-info{color:var(--text-soft);}
body.light .theme-page-number{background:linear-gradient(180deg,#fff 0%,#edf6ff 100%);border-color:rgba(31,151,224,.28);color:#0b2344;box-shadow:0 6px 14px rgba(11,46,93,.05);}
body.light .theme-page-number:hover{background:linear-gradient(180deg,#f7fbff 0%,#dff1ff 100%);border-color:rgba(31,151,224,.55);color:#071a36;}
body.light .theme-page-number.is-active,body.light .theme-page-number:disabled{background:linear-gradient(135deg,#1d8fe8 0%,#19aadb 100%);border-color:rgba(18,124,201,.72);color:#fff;box-shadow:0 10px 20px rgba(25,144,220,.20);}
body.light .theme-pagination-ellipsis{color:var(--text-muted);}
