/*-----------------------------------------------------------------------------*/
/* BASIC LAYOUT */ 
/*-----------------------------------------------------------------------------*/
body {
    margin: 0;
    font-family: 'Fira Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(180deg, #3c3836 0%, #504945 100%); /* swapped: title area colors on page bg */
    color: #ebdbb2; /* gruvbox fg */
}

/* Header */
.app-header { background: #1d2021; border-bottom: 1px solid #3c3836; border-top: 2px solid #fabd2f; position: sticky; top: 0; z-index: 10; box-shadow: 0 2px 10px rgba(0,0,0,.5); }
.header-inner { width: 100%; max-width: none; min-width: 0; margin: 0; padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; box-sizing: border-box; }
.app-title { margin: 0; font-size: 32px; line-height: 36px; color: #ffffff; font-family: 'Cairo Play', 'Fira Sans', system-ui, sans-serif; font-weight: 700; letter-spacing: 0.2px; cursor: pointer; }
.app-title.title-gradient { 
  background: linear-gradient(90deg, #fe8019 0%, #fabd2f 50%, #ffffff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.controls { display: flex; flex-direction: column; align-items: stretch; gap: 10px; color: #ebdbb2; }
.controls .controls-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.controls .controls-row-main { gap: 16px; }
.controls .controls-left, .controls .controls-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.controls label { font-size: 16px; font-weight: 600; color: #ebdbb2; }
.controls.controls-out { padding: 16px 48px; box-sizing: border-box; background: #1d2021; border-top: 1px solid #3c3836; border-bottom: 1px solid #3c3836; box-shadow: 0 2px 10px rgba(0,0,0,.25) inset; }
.controls input[type="search"]{ min-width: 320px; }
.controls .btn { height: 36px; }
.controls .controls-right .controls-spinner { margin-left: auto; }
.controls .controls-heading { font-size: 20px; font-weight: 700; color: #fbf1c7; margin-right: 8px; }
@media (max-width: 900px){
  .controls.controls-out { padding: 12px 16px; }
  .controls input[type="search"]{ min-width: 220px; flex: 1 1 auto; }
}
.controls input[type="search"]{ background:#282828; color:#ebdbb2; border:1px solid #3c3836; border-radius:4px; padding:8px 10px; width: 320px; font-size: 16px; margin-right: 16px; }
.controls select, .controls button { background:#3c3836; color:#ebdbb2; border:1px solid #504945; border-radius:4px; padding:8px 10px; font-size: 16px; }
.controls button:hover { background:#504945; }
.controls-spinner { width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(235,219,178,0.3); border-top-color: #fabd2f; display: inline-block; animation: spin .8s linear infinite; opacity: 0; transition: opacity .15s ease; }
.controls-spinner.show { opacity: 1; }

.content {
    position: relative; top: 0; left: 0;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 0 48px; /* edge-to-edge with page padding */
    box-sizing: border-box;
}

/*-----------------------------------------------------------------------------*/
/* LIBRARY LIST */ 
/*-----------------------------------------------------------------------------*/
ul.library {
    margin: 0;
    padding: 24px 0 24px 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px; /* increased space between books */
}

/* Table view */
.library-table-wrap { margin: 24px 0; }
.library-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 24px; /* larger vertical gaps between rows */
  background: transparent;
  color: #ebdbb2;
}
.library-table thead th {
  position: sticky; top: 0;
  background: #1d2021; color: #fbf1c7;
  text-align: left; font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid #504945;
}
.library-table thead th.sortable { cursor: pointer; user-select: none; color: #fbf1c7; }
.library-table thead th.sortable:hover { color: #ffffff; background: #222526; }
.library-table thead th.sortable::after { content: '\25BE'; /* small caret */ opacity: 0.2; margin-left: 8px; font-size: 12px; }
.library-table thead th.sortable.sort-asc::after { content: '\25B2'; opacity: 0.9; color: #fabd2f; }
.library-table thead th.sortable.sort-desc::after { content: '\25BC'; opacity: 0.9; color: #fabd2f; }
.library-table tbody tr { position: relative; transition: transform .14s ease, background-color .14s ease, filter .14s ease; }
.library-table tbody td {
  padding: 20px 20px; /* more padding so rows stand out */
  vertical-align: middle; font-size: 16px;
  background: #3c3836; /* per-row card background */
  border-top: 1px solid #504945; border-bottom: 1px solid #504945;
}
/* rounded card corners per row */
.library-table tbody td:first-child { border-left: 1px solid #504945; border-top-left-radius: 12px; border-bottom-left-radius: 12px; }
.library-table tbody td:last-child  { border-right: 1px solid #504945; border-top-right-radius: 12px; border-bottom-right-radius: 12px; }
/* 3 hover effects: lift+shadow, left accent bar, image zoom */
.library-table tbody tr:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 18px rgba(0,0,0,.35)); }
.library-table tbody tr:hover td { background: #4a4642; }
.library-table tbody tr:hover td:first-child { border-left-color: #fabd2f; box-shadow: inset 4px 0 0 #fabd2f; }
.library-table tbody tr:nth-child(odd) td { background: #0f1112 !important; }
.library-table tbody tr:nth-child(even) td { background: #6b5f57 !important; }
.library-table .t-cover { width: 130px; }
.library-table .t-cover img { width: 96px; height: 120px; object-fit: cover; display: block; background: #1d2021; box-shadow: 0 8px 16px rgba(0,0,0,.38), 0 0 0 1px rgba(189,174,147,.18); transition: transform .14s ease; }
.library-table tbody tr:hover .t-cover img { transform: scale(1.05); }
.library-table .t-title { font-weight: 700; color: #ffffff; font-family: 'Fira Sans', system-ui, sans-serif; font-size: 18px; }
.library-table .t-title .accent-1 { color: #fabd2f; }
.library-table .t-title .accent-2 { color: #fe8019; }
.library-table .t-badge-wrap { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.library-table .t-badge-bookmark { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 12px; background: #b8bb26; color: #1d2021; font-weight: 900; font-size: 14px; box-shadow: 0 1px 3px rgba(0,0,0,.35); }
.library-table .t-meta { color: #d5c4a1; font-size: 18px; line-height: 28px; margin-top: 4px; }
.library-table .col-actions { width: 180px; text-align: right; }
.btn { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 12px; border-radius: 6px; border: 1px solid #504945; background: #3c3836; color: #ebdbb2; font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer; transition: background .12s ease, transform .12s ease, box-shadow .12s ease; }
.btn:hover { background: #504945; transform: translateY(-1px); box-shadow: 0 6px 12px rgba(0,0,0,.35); }
.btn:active { transform: translateY(0); }
.btn.primary { background: #fabd2f; color: #1d2021; border-color: #fabd2f; }
.btn.primary:hover { background: #f2c438; }
.btn .icon { font-size: 16px; }

@media (max-width: 900px) {
  .library-table .col-actions { width: 120px; }
  .library-table .t-cover { width: 100px; }
  .library-table .t-cover img { width: 72px; height: 90px; }
}

li.book {
    position: relative; top: 0; left: 0;
    margin: 0;
    padding: 16px; /* slightly more inner padding around covers */
    width: auto;
    height: auto; /* driven by cover aspect */
    cursor: pointer;
    box-sizing: border-box;
}
li.book.selected{ z-index: 4;} /* moves selection over page overlay */

/* hover & active */
.book:hover { background-color: transparent; }
.book:active { background-color: transparent; }
.book.selected:hover, li.book.selected:active { background-color: transparent;} /* disables user feedback when selected */

/*-----------------------------------------------------------------------------*/
/* BOOK COVERS */ 
/*-----------------------------------------------------------------------------*/
.book .cover {
    cursor: pointer;
    width: 100%;
    aspect-ratio: 8 / 10; /* keep your book size */
    position: relative;
    transition: box-shadow .18s ease, transform .18s ease;
    box-shadow:
      0 16px 26px rgba(0,0,0,.50),
      0 7px 14px rgba(0,0,0,.42),
      0 2px 8px rgba(0,0,0,.38),
      0 0 0 1px rgba(189,174,147,.18);
    border-radius: 0;
    overflow: hidden;
}
/* per-book bookmark remove control (bookmarks view only) — below cover */
.bm-remove-below { margin: 22px auto 0; display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 6px; border: 1px solid #504945; background: #3c3836; color: #ebdbb2; font-weight: 700; font-size: 14px; cursor: pointer; }
.bm-remove-below:hover { background: #504945; }
/* removed grid Saved badge per request */
.book .cover:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
      0 22px 40px rgba(0,0,0,.58),
      0 10px 18px rgba(0,0,0,.48),
      0 3px 10px rgba(0,0,0,.46),
      0 0 0 1px rgba(189,174,147,.22);
}

/* Subtle left spine */
.book .cover::before {
    content: "";
    position: absolute; left: 0; top: 2%; bottom: 2%; width: 8px;
    background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(255,255,255,.06));
    box-shadow: inset -1px 0 rgba(255,255,255,.05), inset 1px 0 rgba(0,0,0,.25);
    pointer-events: none;
}

/* Sheen sweep on hover */
.book .cover::after {
    content: "";
    position: absolute; top: 0; left: -70%; width: 50%; height: 100%;
    background: linear-gradient(60deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    opacity: .0;
    transition: opacity .18s ease;
    pointer-events: none;
}
.book .cover:hover::after { opacity: .9; animation: sheen-sweep 1.15s ease forwards; }

@keyframes sheen-sweep {
    0% { left: -70%; }
    100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
    .book .cover { transition: box-shadow .18s ease; }
    .book .cover:hover { transform: none; }
    .book .cover:hover::after { animation: none; opacity: .12; left: 0; right: 0; }
}

.book .cover img {
    background-color: #1d2021; /* gruvbox bg0_h */
    width: 100%; height: 100%;
    border-width: 0px; /* border to be later leveraged by animation */ 
    border-style: solid; 
    border-color: #fbf1c7; /* gruvbox light frame when expanded */
    display: block;
    object-fit: cover;
}

/* 3D book cover effect (from book-3d) */
/* removed previous 3D book-cover styles in favor of flat sheen effect */

/* animation start points determined by book position */
.book.selected .cover { position: absolute; top: 10px; }

.book.selected.left-side.first .cover, .book.selected.right-side .cover { left: 10px; right: auto;}
.book.selected.right-side.last .cover , .book.selected.left-side .cover { left: auto; right: 10px;}

/*-----------------------------------------------------------------------------*/
/* SUMMMARY ABSTRACTS */ 
/*-----------------------------------------------------------------------------*/
li.book .summary {
    display: none;
    cursor: default;
    position: absolute; top: 10px;
    z-index: 4;
    padding: 10px 14px;
    width: 450px; height: 0px;
    overflow: hidden;
    color: #ebdbb2;
}

.summary h1, .summary h2, .summary p { cursor: text;}

.summary h1 {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 4px 0; padding: 0;
    color: #ffffff; /* hard white title */
    font-family: 'Fira Sans', system-ui, sans-serif;
    font-weight: 700; /* Fira Sans Bold */
}
.summary h1 .accent-1 { color: #fabd2f; }
.summary h1 .accent-2 { color: #fe8019; }

.summary h2 {
    font-weight: normal;
    font-style: italic;
    font-size: 24px;
    margin: 0 0 12px 0;
    padding: 0 0 12px 0;
    border-bottom: 2px dotted #bdae93;
    color: #d5c4a1;
}

.summary p {
    font-size: 16px;
    line-height: 24px;
    margin: 0; padding: 0;
}

/* summary panels sit adjacent using relative offsets */
.left-side .summary { left: calc(100% + 20px); border-right: none; }
.left-side.first .summary { left: calc(100% + 20px); }

.right-side .summary { left: calc(-450px - 20px); border-left: none; }
.right-side.last .summary { left: calc(-450px - 20px); }

/*-----------------------------------------------------------------------------*/
/* PAGE OVERLAYS */ 
/*-----------------------------------------------------------------------------*/
.overlay-page {
    display: none;
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1d2021;
    opacity: .65;
    filter: alpha(opacity = 70);
    z-index: 2;
}

.overlay-summary {
    display: none;
    position: absolute; top: 0; left: 0; height: 0px; width: 480px;
    background: #3c3836;
    opacity: .92;
    filter: alpha(opacity = 90);
    z-index: 3;
}

/* Loader */
#loader {
    position: fixed; inset: 0;
    background: linear-gradient(135deg, #2b2b2b, #3c3836, #504945, #2b2b2b);
    background-size: 400% 400%;
    animation: loaderBg 12s ease infinite;
    display: none;
    align-items: center; justify-content: center;
    z-index: 1000;
}
.loader-box { width: min(460px, 86vw); color: #fbf1c7; text-align: center; padding: 10px 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.loader-title { font-size: 20px; font-weight: 700; margin-top: 50px; letter-spacing: 0.3px; }
.loader-dots { display:flex; justify-content:center; gap:8px; margin-top: 45px; }
.loader-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #fabd2f; box-shadow: 0 0 10px rgba(248,189,47,0.6); animation: bounce 0.9s ease-in-out infinite alternate; }
.loader-dots .dot:nth-child(2){ animation-delay: .15s; background:#b8bb26; box-shadow:0 0 10px rgba(184,187,38,0.55); }
.loader-dots .dot:nth-child(3){ animation-delay: .30s; background:#fe8019; box-shadow:0 0 10px rgba(254,128,25,0.55); }
.loader-ring { --p:0; width: 120px; height: 120px; border-radius: 50%; margin: 36px auto 0 auto; position: relative; display: flex; align-items: center; justify-content: center; background: conic-gradient(#ffdd57 calc(var(--p)*1%), rgba(255,255,255,0.15) 0); box-shadow: 0 6px 18px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08) inset; }
.loader-ring::before { content:""; position:absolute; inset: 12px; border-radius: 50%; background: rgba(43,43,43,0.35); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.ring-text { position: relative; z-index: 1; font-weight: 700; font-size: 36px; color: #fbf1c7; text-shadow: 0 1px 1px rgba(0,0,0,0.4); }

@keyframes loaderBg { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes rainbow { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
@keyframes bounce { from { transform: translateY(0); opacity: .8; } to { transform: translateY(-8px); opacity: 1; } }
/* summary close button */
.summary .summary-close {
    position: absolute;
    top: 8px; right: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fbf1c7;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}
.summary .summary-close:hover { background: rgba(255,255,255,0.2); }

/* Detail modal */
.detail-overlay { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.75); z-index: 1001; }
.detail-card { width: min(1000px, 90vw); max-height: 90vh; background: #3c3836; color: #ebdbb2; border: 1px solid #504945; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); display: grid; grid-template-columns: 40% 60%; gap: 0; position: relative; overflow: hidden; transform: scale(.98); opacity: 0; transition: transform .18s ease, opacity .18s ease; }
.detail-overlay.show .detail-card { transform: scale(1); opacity: 1; }
.detail-left { background: #1d2021; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 32px 16px 16px 16px; gap: 12px; }
.detail-left img { width: 100%; max-width: 320px; aspect-ratio: 8/10; object-fit: cover; display: block; box-shadow: 0 24px 40px rgba(0,0,0,.6), 0 10px 18px rgba(0,0,0,.5), 0 3px 10px rgba(0,0,0,.5), 0 0 0 1px rgba(189,174,147,.22); border: none; border-radius: 0; }
.detail-right { padding: 18px 56px 16px 18px; overflow: hidden; }
.detail-meta-row { display: flex; align-items: center; gap: 12px; margin: 4px 0 10px 0; }
.detail-meta-row h2 { margin: 0; flex: 1 1 auto; }
.detail-right .detail-scroll { padding-bottom: 0; }
.detail-card .detail-right { position: relative; }
.detail-right h1 { margin: 0 0 10px 0; font-size: 26px; line-height: 34px; color: #ffffff; font-family: 'Fira Sans', system-ui, sans-serif; font-weight: 700; }
.detail-right h1 .accent-1 { color: #fabd2f; }
.detail-right h1 .accent-2 { color: #fe8019; }
.detail-right h2 { margin: 0 0 14px 0; font-weight: normal; font-size: 20px; color: #d5c4a1; border-bottom: 1px dashed #bdae93; padding-bottom: 10px; }
.detail-right p { font-size: 18px; line-height: 28px; }
.detail-right .kw { font-weight: 700; }
.detail-right .kw.c0 { color: #fabd2f; }
.detail-right .kw.c1 { color: #8ec07c; }
.detail-right .kw.c2 { color: #83a598; }
.detail-right .kw.c3 { color: #d3869b; }
.detail-right .kw.c4 { color: #fe8019; }
.detail-right .kw.c5 { color: #fb4934; }
.detail-scroll { max-height: calc(90vh - 200px); overflow-y: auto; overflow-x: hidden; padding-right: 6px; overscroll-behavior: contain; }
.detail-actions-left { width: 100%; display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: auto; }
.action-btn.two-tone { display: grid; grid-template-columns: 56px 1fr; align-items: stretch; height: 56px; border-radius: 0; overflow: hidden; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,.35); transition: transform .12s ease, box-shadow .12s ease; }
.action-btn.two-tone .icon { display: flex; align-items: center; justify-content: center; font-size: 22px; }
.action-btn.two-tone .label { display: flex; align-items: center; padding: 0 16px; font-size: 16px; font-weight: 700; letter-spacing: .2px; }
.action-btn.two-tone:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(0,0,0,.45); }
/* Color pairs per action */
.action-btn.two-tone.read .icon { background: #fabd2f; color: #1d2021; }
.action-btn.two-tone.read .label { background: #fe8019; color: #1d2021; }
.action-btn.two-tone.listen .icon { background: #83a598; color: #1d2021; }
.action-btn.two-tone.listen .label { background: #8ec07c; color: #1d2021; }
.action-btn.two-tone.watch .icon { background: #d3869b; color: #1d2021; }
.action-btn.two-tone.watch .label { background: #fb4934; color: #fbf1c7; }
.action-btn.two-tone.download .icon { background: #b8bb26; color: #1d2021; }
.action-btn.two-tone.download .label { background: #83a598; color: #1d2021; }
.detail-scroll p { margin: 0 0 14px 0; }
.detail-close { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fbf1c7; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; text-align: center; cursor: pointer; }
.detail-close:hover { background: rgba(255,255,255,0.22); }
/* Bookmark toggle in detail (bottom-right) */
.bookmark-toggle { position: static; display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px; border-radius: 6px; border: 1px solid #504945; background: #3c3836; color: #ebdbb2; font-weight: 700; font-size: 14px; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,.25); }
.bookmark-toggle:hover { background: #504945; }
.bookmark-toggle.active { background: #b8bb26; color: #1d2021; border-color: #b8bb26; }
.bookmark-toggle .b-icon { font-size: 18px; }
.pager { padding: 16px 48px 22px 48px; margin: 0 -48px; background: #1d2021; border-top: 1px solid #3c3836; box-shadow: 0 -1px 0 rgba(0,0,0,.2); box-sizing: border-box; }
.pager-inner { width: 100%; max-width: none; min-width: 0; margin: 0; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-sizing: border-box; font-size: 16px; }
.pager-pages { display: flex; align-items: center; gap: 8px; margin-right: 16px; }
.pager-pages button { background:#3c3836; color:#ebdbb2; border:1px solid #504945; border-radius:6px; padding:8px 12px; cursor: pointer; min-width: 36px; }
.pager-pages button:hover { background:#504945; }
.pager-pages button.active { background:#fabd2f; color:#1d2021; border-color:#fabd2f; font-weight: 700; }
.pager-pages .ellipsis { color:#d5c4a1; padding: 0 4px; }
.pager-left { display:flex; align-items:center; gap:8px; }
.pager-right { display:flex; align-items:center; gap:12px; }
.pager-right #pageInfo { min-width: 160px; text-align: center; color: #d5c4a1; font-weight: 600; }
.pager-right button { background:#3c3836; color:#ebdbb2; border:1px solid #504945; border-radius:6px; padding:10px 14px; cursor: pointer; font-size: 15px; }
.pager-right button:hover { background:#504945; }

/* Embedded section (vertical cards) */
.embed-section { margin: 0; padding: 0; border: 0; position: relative; }
.embed-frame-wrap { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); border: 0; background: #1d2021; box-shadow: none; }
.embed-frame-wrap iframe { display: block; width: 100vw; height: 0; border: 0; background: #1d2021; }
.pager-right button[disabled] { opacity: .5; cursor: not-allowed; }

/* Pager spinner */
.pager-spinner {
    width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid rgba(235,219,178,0.3);
    border-top-color: #fabd2f;
    display: inline-block; vertical-align: middle;
    animation: spin 0.8s linear infinite; opacity: 0; transition: opacity .15s ease;
}
.pager-spinner.show { opacity: 1; }
@keyframes spin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }

/* Footer */
.site-footer { padding: 24px 48px 40px 48px; margin: 0; background: transparent; box-sizing: border-box; }
.footer-inner { text-align: center; color: #d5c4a1; font-size: 14px; }
.pager-left select { background:#3c3836; color:#ebdbb2; border:1px solid #504945; border-radius:4px; padding:6px 8px; }
.pager-right { display:flex; align-items:center; gap:8px; }
.pager-right button { background:#3c3836; color:#ebdbb2; border:1px solid #504945; border-radius:4px; padding:6px 8px; }
.pager-right button:hover { background:#504945; }
