


/* From: /var/www/arxivacademics/archives/arxiv/cfg/static/style/auto/aaa_theme.css */

/* ═══════════════════════════════════════════════════════════════
   Arxiv Academics — Material Design 3 Theme
   arxiv.academicsbook.com
═══════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --c-primary:       #1a237e;
  --c-primary-mid:   #283593;
  --c-primary-light: #3949ab;
  --c-primary-pale:  #e8eaf6;
  --c-secondary:     #00897b;
  --c-secondary-light:#26a69a;
  --c-amber:         #f57f17;
  --c-amber-light:   #ffb300;
  --c-purple:        #6a1b9a;
  --c-purple-light:  #8e24aa;
  --c-red:           #b71c1c;
  --c-red-mid:       #c62828;
  --c-bg:            #f4f6fb;
  --c-surface:       #ffffff;
  --c-surface2:      #f8f9fe;
  --c-border:        #e4e8f0;
  --c-text:          #1a1a2e;
  --c-text-muted:    #64748b;
  --c-text-light:    #94a3b8;
  --shadow-sm:       0 1px 3px rgba(26,35,126,.08), 0 1px 2px rgba(26,35,126,.04);
  --shadow-md:       0 4px 16px rgba(26,35,126,.10), 0 2px 6px rgba(26,35,126,.06);
  --shadow-lg:       0 8px 32px rgba(26,35,126,.13), 0 4px 12px rgba(26,35,126,.08);
  --shadow-xl:       0 20px 60px rgba(26,35,126,.16);
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --font-main:       'Inter', system-ui, -apple-system, sans-serif;
  --font-display:    'Playfair Display', Georgia, serif;
  --nav-h:           68px;
  --trans:           0.2s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
a { color: var(--c-primary-light); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-primary); }
img { max-width: 100%; display: block; }

/* ── Hide EPrints default elements we don't need ── */
header.ep_tm_header, .ep_tm_header, .ep_tm_footer,
#ep_tm_header, #ep_tm_footer,
.ep_tm_page_content h1.ep_tm_pagetitle,
.ep_tm_searchbar { display: none !important; }

/* Hide pagetop notifications, cookie notices, any empty divs EPrints injects */
#ep_notices, .ep_notice, .ep_rd_bar, .ep_rt_bar,
.ep_roses_and_rust_header, .ep_roses_and_rust_footer,
.ep_header_bar, div[id="ep_pagetop"] { display: none !important; }

/* ══ LIGHTBOX: EPrints injects Lightbox2 containers on EVERY page load.
   These create white 250×250px boxes visible before activation.
   Hide them until triggered (they show themselves via JS when needed). ══ */
#lightbox { display: none !important; }
#overlay   { display: none !important; }
#outerImageContainer { display: none !important; }
#imageDataContainer  { display: none !important; }

/* Suppress any accidental white box from absolutely-positioned EPrints elements */
.arxiv-hero > div:not(.arxiv-hero__content),
.arxiv-hero > span { display: none !important; }

/* ── Main layout ── */
.arxiv-main { min-height: calc(100vh - var(--nav-h)); }
.arxiv-page-wrapper { }
.arxiv-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Wrapper for inner pages (non-homepage) ── */
div#main_content, div.ep_tm_page_content {
  max-width: 1200px; margin: 0 auto; padding: 40px 24px 72px;
}
/* Remove old wrapper that adds extra padding */
#wrapper { background: var(--c-bg); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.arxiv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(26,35,126,.08);
  transition: box-shadow var(--trans), background var(--trans);
}
.arxiv-nav--scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
}
.arxiv-nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.arxiv-nav__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--c-text); flex-shrink: 0;
}
.arxiv-nav__brand-icon { font-size: 1.5rem; }
.arxiv-nav__brand-text {
  font-size: 1.05rem; font-weight: 400; color: var(--c-text-muted);
  letter-spacing: -0.2px;
}
.arxiv-nav__brand-text strong { font-weight: 700; color: var(--c-primary); }
.arxiv-nav__links {
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.arxiv-nav__link {
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--c-text-muted);
  transition: all var(--trans);
}
.arxiv-nav__link:hover, .arxiv-nav__link--active {
  color: var(--c-primary); background: var(--c-primary-pale);
}
.arxiv-nav__search { flex: 1; max-width: 420px; }
.arxiv-nav__searchbar {
  display: flex; align-items: center; gap: 8px;
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  border-radius: 100px; padding: 0 6px 0 14px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.arxiv-nav__searchbar:focus-within {
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 3px rgba(57,73,171,.12);
}
.arxiv-nav__searchbar svg { color: var(--c-text-light); flex-shrink: 0; }
.arxiv-nav__searchinput {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--font-main); font-size: .875rem; color: var(--c-text);
  padding: 8px 0;
}
.arxiv-nav__searchinput::placeholder { color: var(--c-text-light); }
.arxiv-nav__searchbtn {
  background: var(--c-primary); color: #fff; border: none; cursor: pointer;
  padding: 7px 16px; border-radius: 100px; font-size: .8rem; font-weight: 600;
  font-family: var(--font-main); transition: background var(--trans);
  white-space: nowrap;
}
.arxiv-nav__searchbtn:hover { background: var(--c-primary-light); }
.arxiv-nav__user { flex-shrink: 0; font-size: .8rem; }
.arxiv-nav__user a { color: var(--c-text-muted); font-size: .82rem; }
.arxiv-nav__hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px; margin-left: auto;
}
.arxiv-nav__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--c-text);
  border-radius: 2px; transition: all .25s;
}
.arxiv-nav__mobile {
  display: none; flex-direction: column; background: #fff;
  border-top: 1px solid var(--c-border); padding: 12px 0;
}
.arxiv-nav__mobile-link {
  padding: 12px 24px; font-size: .9rem; font-weight: 500; color: var(--c-text-muted);
}
.arxiv-nav__mobile-link:hover { background: var(--c-primary-pale); color: var(--c-primary); }
.arxiv-nav__mobile--open { display: flex; }
.arxiv-nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.arxiv-nav__hamburger--open span:nth-child(2) { opacity: 0; }
.arxiv-nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.arxiv-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1257 0%, #1a237e 35%, #283593 60%, #00897b 100%);
  background-size: 300% 300%;
  animation: hero-gradient 12s ease infinite;
  min-height: 520px; display: flex; align-items: center;
  padding: 80px 24px 90px;
}
@keyframes hero-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Remove any leftover orb elements */
.arxiv-hero__bg,
.arxiv-hero__orb { display: none !important; }
.arxiv-hero__content {
  position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center;
}
.arxiv-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: 6px 16px; font-size: .8rem; font-weight: 500; letter-spacing: .5px;
  margin-bottom: 24px;
}
.arxiv-hero__title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.arxiv-hero__title-accent {
  background: linear-gradient(90deg, #80cbc4, #b2dfdb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.arxiv-hero__sub {
  color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.arxiv-hero__search {
  max-width: 680px; margin: 0 auto;
}
.arxiv-hero__searchbox {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.97); border-radius: 100px;
  padding: 8px 8px 8px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.arxiv-hero__search-icon { color: var(--c-text-muted); flex-shrink: 0; }
.arxiv-hero__searchinput {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font-main); font-size: 1rem; color: var(--c-text);
  padding: 4px 0;
}
.arxiv-hero__searchinput::placeholder { color: var(--c-text-light); }
.arxiv-hero__searchbtn {
  display: flex; align-items: center; gap: 8px;
  background: var(--c-primary); color: #fff; border: none; cursor: pointer;
  padding: 12px 24px; border-radius: 100px;
  font-family: var(--font-main); font-size: .9rem; font-weight: 600;
  transition: all var(--trans); white-space: nowrap;
}
.arxiv-hero__searchbtn:hover { background: var(--c-primary-light); transform: translateY(-1px); }
.arxiv-hero__search-hints {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  flex-wrap: wrap; justify-content: center;
}
.arxiv-hero__search-hints span { color: rgba(255,255,255,.5); font-size: .82rem; }
.arxiv-hero__hint-tag {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: 4px 12px; font-size: .78rem; transition: all var(--trans);
}
.arxiv-hero__hint-tag:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════ */
.arxiv-section { padding: 64px 0; }
.arxiv-section--gray { background: var(--c-bg); }
.arxiv-section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px; gap: 16px;
}
.arxiv-section-title {
  font-size: 1.6rem; font-weight: 700; color: var(--c-text);
  position: relative; padding-bottom: 12px;
}
.arxiv-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
}
.arxiv-section-sub { color: var(--c-text-muted); margin-top: 4px; font-size: .9rem; }
.arxiv-section-link { color: var(--c-primary-light); font-size: .9rem; font-weight: 500; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   STATS CARDS
═══════════════════════════════════════════════════════════════ */
.arxiv-stats-section { padding: 0; }
.arxiv-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  transform: translateY(-36px);
}
.arxiv-stat-card {
  background: var(--c-surface); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--c-border);
}
.arxiv-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.arxiv-stat-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.arxiv-stat-card__icon--blue   { background: linear-gradient(135deg, #e8eaf6, #c5cae9); color: var(--c-primary); }
.arxiv-stat-card__icon--teal   { background: linear-gradient(135deg, #e0f2f1, #b2dfdb); color: var(--c-secondary); }
.arxiv-stat-card__icon--amber  { background: linear-gradient(135deg, #fff8e1, #ffe082); color: var(--c-amber); }
.arxiv-stat-card__icon--purple { background: linear-gradient(135deg, #f3e5f5, #e1bee7); color: var(--c-purple); }
.arxiv-stat-card__num {
  font-size: 2.2rem; font-weight: 800; color: var(--c-text);
  line-height: 1; margin-bottom: 8px; letter-spacing: -1px;
}
.arxiv-stat-card__label { font-size: .82rem; color: var(--c-text-muted); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   JOURNAL CARDS
═══════════════════════════════════════════════════════════════ */
.arxiv-journals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.arxiv-journal-card {
  background: var(--c-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
  display: flex; flex-direction: column;
}
.arxiv-journal-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.arxiv-journal-card__header {
  display: flex; align-items: center; gap: 14px; padding: 20px 24px;
  border-bottom: 1px solid var(--c-border);
}
.arxiv-journal-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
  letter-spacing: .5px;
}
.arxiv-journal-card--blue   .arxiv-journal-card__icon { background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light)); }
.arxiv-journal-card--teal   .arxiv-journal-card__icon { background: linear-gradient(135deg, #00695c, var(--c-secondary)); }
.arxiv-journal-card--amber  .arxiv-journal-card__icon { background: linear-gradient(135deg, #e65100, var(--c-amber)); }
.arxiv-journal-card--purple .arxiv-journal-card__icon { background: linear-gradient(135deg, var(--c-purple), var(--c-purple-light)); }
.arxiv-journal-card__info { flex: 1; min-width: 0; }
.arxiv-journal-card__name { font-size: .95rem; font-weight: 700; color: var(--c-text); margin-bottom: 2px; }
.arxiv-journal-card__url { font-size: .78rem; color: var(--c-text-light); }
.arxiv-journal-card__count {
  font-size: 1.4rem; font-weight: 800; color: var(--c-text-muted);
  letter-spacing: -1px; flex-shrink: 0;
}
.arxiv-journal-card__articles { flex: 1; padding: 8px 0; }
.arxiv-journal-card__more {
  display: block; text-align: center; padding: 14px;
  font-size: .82rem; font-weight: 600; color: var(--c-primary-light);
  border-top: 1px solid var(--c-border);
  transition: background var(--trans), color var(--trans);
}
.arxiv-journal-card__more:hover { background: var(--c-primary-pale); }
.arxiv-mini-article {
  display: block; padding: 10px 24px;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--trans);
}
.arxiv-mini-article:last-child { border-bottom: none; }
.arxiv-mini-article:hover { background: var(--c-bg); }
.arxiv-mini-article__title {
  display: block; font-size: .85rem; font-weight: 500; color: var(--c-text);
  line-height: 1.45; margin-bottom: 4px;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.arxiv-mini-article__meta { font-size: .75rem; color: var(--c-text-light); }
.arxiv-article-skeleton, .arxiv-article-card-skeleton {
  height: 58px; background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%; border-radius: var(--radius-sm);
  animation: shimmer 1.5s infinite; margin: 8px 24px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.arxiv-article-card-skeleton { height: 180px; border-radius: var(--radius-md); margin: 0; }
.arxiv-no-items { padding: 16px 24px; color: var(--c-text-light); font-size: .85rem; }

/* ═══════════════════════════════════════════════════════════════
   RECENT ARTICLES GRID
═══════════════════════════════════════════════════════════════ */
.arxiv-recent-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.arxiv-article-card {
  background: var(--c-surface); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.arxiv-article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.arxiv-article-card__year {
  display: inline-block; background: var(--c-primary-pale);
  color: var(--c-primary); font-size: .75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; align-self: flex-start;
}
.arxiv-article-card__title {
  font-size: .95rem; font-weight: 600; line-height: 1.5;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
.arxiv-article-card__title a { color: var(--c-text); }
.arxiv-article-card__title a:hover { color: var(--c-primary); }
.arxiv-article-card__author { font-size: .8rem; color: var(--c-text-muted); }
.arxiv-article-card__abstract {
  font-size: .83rem; color: var(--c-text-muted); line-height: 1.6; flex: 1;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
.arxiv-article-card__read {
  font-size: .8rem; font-weight: 600; color: var(--c-primary-light); margin-top: 4px;
  align-self: flex-start;
}
.arxiv-article-card__read:hover { color: var(--c-primary); }

/* ═══════════════════════════════════════════════════════════════
   BROWSE CARDS
═══════════════════════════════════════════════════════════════ */
.arxiv-browse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.arxiv-browse-card {
  background: var(--c-surface); border-radius: var(--radius-lg);
  padding: 28px 22px; border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm); text-align: center;
  transition: all var(--trans); display: flex; flex-direction: column; gap: 10px;
}
.arxiv-browse-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: var(--c-primary-pale); background: linear-gradient(135deg, #fff, #f8f9fe);
}
.arxiv-browse-card__icon { font-size: 2.2rem; line-height: 1; }
.arxiv-browse-card__title { font-size: 1rem; font-weight: 700; color: var(--c-text); }
.arxiv-browse-card__desc { font-size: .82rem; color: var(--c-text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   SEARCH PAGE HEADER AREA
═══════════════════════════════════════════════════════════════ */
/* Page title for inner pages */
h1.ep_tm_pagetitle, h1#page-title {
  display: block !important; font-size: 1.6rem; font-weight: 800;
  color: var(--c-text); margin: 0 0 28px; padding: 0;
  line-height: 1.25;
}

/* Search form styling */
#ep_search_form, .ep_search_form, form[action*="/cgi/search"] {
  background: var(--c-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
  padding: 24px 28px; margin-bottom: 28px;
}
.ep_search_form table { width: 100%; }
.ep_search_form table th, .ep_search_form table td { border: none; padding: 6px 10px; }
.ep_search_form table th { color: var(--c-text-muted); font-size: .85rem; font-weight: 600; width: 180px; }
.ep_search_controls {
  background: var(--c-surface); border-radius: var(--radius-lg); padding: 16px 24px;
  margin-bottom: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
  font-size: .88rem; color: var(--c-text-muted); line-height: 2;
}
.ep_search_controls a { color: var(--c-primary-light); font-weight: 600; }
.ep_search_number { font-weight: 800; color: var(--c-primary); }

/* ═══════════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE
═══════════════════════════════════════════════════════════════ */
.ep_search_results { display: flex; flex-direction: column; gap: 12px; }
/* Old-style ep_search_result (without our result.xml) */
.ep_search_result {
  background: var(--c-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.ep_search_result:hover { box-shadow: var(--shadow-md); border-color: var(--c-primary-pale); }
.ep_search_result > div:first-child {
  font-size: .78rem; color: var(--c-text-light); font-weight: 700;
}
.ep_search_result_docs { display: flex; gap: 8px; margin-top: 8px; }
.ep_paginate_list .ep_search_result { margin-bottom: 0; }
/* Citation content in result */
.ep_citation_default, .ep_citation {
  font-size: .88rem; color: var(--c-text-muted); line-height: 1.65;
}
.ep_citation_default > *:first-child a,
.ep_citation_default strong a,
.ep_citation a.ep_document_link { display: none; }
/* Article title in citation */
.ep_citation_default a[href*="/id/eprint/"],
.ep_citation a[href*="/id/eprint/"] {
  font-size: 1.02rem; font-weight: 700; color: var(--c-text);
  display: block; margin-bottom: 6px; line-height: 1.4;
}
.ep_citation_default a[href*="/id/eprint/"]:hover,
.ep_citation a[href*="/id/eprint/"]:hover { color: var(--c-primary); }

/* Pagination */
.ep_search_reorder { margin-top: 16px; }
.ep_search_export { margin-top: 12px; font-size: .83rem; }
.ep_search_export select, .ep_search_reorder select {
  border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
  padding: 6px 10px; font-size: .83rem; background: var(--c-surface);
}
/* Page number links */
.ep_search_control a, .ep_search_control strong {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px; padding: 0 10px; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600;
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  color: var(--c-primary-light); transition: all var(--trans);
}
.ep_search_control a:hover { background: var(--c-primary-pale); border-color: var(--c-primary-light); }
.ep_search_control strong { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ═══════════════════════════════════════════════════════════════
   ABSTRACT / ITEM PAGE
═══════════════════════════════════════════════════════════════ */
/* Wrapper for item content */
.ep_summary_content {
  background: var(--c-surface); border-radius: var(--radius-xl);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-md);
  overflow: hidden; margin-bottom: 28px;
}
.ep_summary_content_main { padding: 40px 44px; }
.ep_summary_content_top, .ep_summary_content_left,
.ep_summary_content_right, .ep_summary_content_bottom { }

/* Citation line (authors, journal, year) */
.ep_summary_content_main > p:first-child {
  background: var(--c-bg); border-radius: var(--radius-md);
  padding: 14px 18px; margin-bottom: 24px;
  font-size: .88rem; color: var(--c-text-muted);
  border-left: 3px solid var(--c-primary-light);
}
/* Abstract heading and content */
h2 { font-size: 1.15rem; font-weight: 700; color: var(--c-text); margin: 24px 0 12px; }
.ep_summary_content_main > div[style*="text-align"] p {
  font-size: .95rem; line-height: 1.8; color: var(--c-text-muted);
}
/* Actions bar */
.ep_summary_page_actions {
  background: linear-gradient(135deg, var(--c-bg), #eef0f8);
  border-top: 1px solid var(--c-border); padding: 16px 44px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.ep_summary_page_actions dt { margin: 0; }
.ep_summary_page_actions dd { margin: 0; }
.ep_summary_page_actions img.ep_form_action_icon { width: 30px; height: 30px; }

/* Metadata table */
.ep_summary_content_main table {
  border-collapse: separate; border-spacing: 0;
  width: 100%; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--c-border);
  margin: 20px 0;
}
.ep_summary_content_main table th,
.ep_summary_content_main table td {
  padding: 11px 18px; border-bottom: 1px solid var(--c-border); font-size: .87rem;
}
.ep_summary_content_main table th {
  font-weight: 600; color: var(--c-text-muted); text-align: right;
  width: 180px; white-space: nowrap;
  background: linear-gradient(135deg, var(--c-bg), #eef0f8);
}
.ep_summary_content_main table td { color: var(--c-text); }
.ep_summary_content_main table tr:last-child th,
.ep_summary_content_main table tr:last-child td { border-bottom: none; }

/* PDF button */
.arxiv-fulltext-card { margin: 0 0 28px; }
.arxiv-pdf-btn {
  display: inline-flex !important; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #c62828, #b71c1c) !important;
  color: #fff !important; padding: 15px 32px !important;
  border-radius: var(--radius-md) !important; font-weight: 700 !important;
  font-size: 1.02rem !important; text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(183,28,28,.35) !important;
  transition: all .18s ease !important; letter-spacing: .2px !important;
}
.arxiv-pdf-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(183,28,28,.45) !important;
  color: #fff !important;
}
.arxiv-fulltext-note { color: var(--c-text-light); font-size: .82rem; margin-top: 10px; display: block; }

/* ═══════════════════════════════════════════════════════════════
   BROWSE / VIEW PAGES
═══════════════════════════════════════════════════════════════ */
/* Year/author/subject index menu */
.ep_paginate_menu, .ep_paginate_sections {
  background: var(--c-surface); border-radius: var(--radius-lg);
  padding: 20px 24px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
  line-height: 2.2;
}
.ep_paginate_menu a, .ep_paginate_menu span,
.ep_paginate_sections a {
  display: inline-block; padding: 5px 11px; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600; color: var(--c-primary-light);
  transition: all var(--trans); margin: 2px;
}
.ep_paginate_menu a:hover, .ep_paginate_sections a:hover {
  background: var(--c-primary-pale); color: var(--c-primary);
}
.ep_paginate_menu .ep_paginate_current, .ep_paginate_current a {
  background: var(--c-primary) !important; color: #fff !important;
  border-radius: var(--radius-sm);
}
/* Year/view listing items */
.ep_paginate_list { }
.ep_paginate_list .ep_search_result,
.ep_paginate_list > div {
  background: var(--c-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
  padding: 18px 24px; margin-bottom: 10px;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.ep_paginate_list > div:hover {
  box-shadow: var(--shadow-md); border-color: var(--c-primary-pale);
}
/* Count badges in browse lists */
.ep_paginate_list li, ul.ep_paginate_list li {
  list-style: none; padding: 0; margin: 0;
}
/* Year list with item counts */
.ep_paginate_menu ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 4px; }
.ep_paginate_menu ul li { display: inline-block; }
.ep_paginate_menu ul li a {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md); padding: 8px 16px;
  font-size: .88rem; font-weight: 600; color: var(--c-text);
  transition: all var(--trans); text-decoration: none;
}
.ep_paginate_menu ul li a:hover {
  background: var(--c-primary-pale); border-color: var(--c-primary-light);
  color: var(--c-primary);
}

/* Browse main menu (view/ root page) */
.ep_block_menu {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px;
}
.ep_block_menu_option_title a {
  display: block; padding: 20px 22px; background: var(--c-surface);
  border-radius: var(--radius-lg); border: 1px solid var(--c-border);
  font-weight: 700; color: var(--c-text); font-size: 1rem;
  box-shadow: var(--shadow-sm); transition: all var(--trans);
  text-decoration: none;
}
.ep_block_menu_option_title a:hover {
  box-shadow: var(--shadow-md); color: var(--c-primary);
  transform: translateY(-3px); border-color: var(--c-primary-pale);
}
.ep_block_menu_option_desc {
  padding: 6px 22px 18px; font-size: .82rem; color: var(--c-text-muted); line-height: 1.55;
}
.ep_block_menu_option_desc a { color: var(--c-primary-light); }

/* ═══════════════════════════════════════════════════════════════
   GENERAL CONTENT PAGES (information, policies, etc.)
═══════════════════════════════════════════════════════════════ */
.ep_tm_page_content {
  max-width: 900px; margin: 0 auto; padding: 48px 24px 80px;
}
.ep_tm_page_content h1 {
  font-size: 2rem; font-weight: 800; margin-bottom: 32px;
  color: var(--c-text); padding-bottom: 20px;
  border-bottom: 3px solid var(--c-primary-pale);
  line-height: 1.25;
}
.ep_tm_page_content h2 {
  font-size: 1.25rem; font-weight: 700; margin: 32px 0 14px; color: var(--c-text);
  padding-left: 12px; border-left: 3px solid var(--c-primary-light);
}
.ep_tm_page_content p { margin-bottom: 18px; color: var(--c-text-muted); line-height: 1.8; font-size: .95rem; }
.ep_tm_page_content ul, .ep_tm_page_content ol { margin: 0 0 18px 24px; color: var(--c-text-muted); line-height: 1.8; }
.ep_tm_page_content a { color: var(--c-primary-light); font-weight: 500; }
.ep_tm_page_content a:hover { color: var(--c-primary); }

/* ── Latest additions page ── */
.ep_form_action_button { margin: 4px; }
/* Latest tool result */
.ep_search_result a em { font-style: normal; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   FORMS (search, login, etc.)
═══════════════════════════════════════════════════════════════ */
/* General inputs — NOT the nav/hero searchbars (they have their own styles) */
input[type="text"]:not(.arxiv-nav__searchinput):not(.arxiv-hero__searchinput),
input[type="email"], input[type="password"], select, textarea {
  border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
  padding: 10px 14px; font-family: var(--font-main); font-size: .9rem;
  color: var(--c-text); background: var(--c-surface); outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
input[type="text"]:not(.arxiv-nav__searchinput):not(.arxiv-hero__searchinput):focus,
input[type="email"]:focus, input[type="password"]:focus,
select:focus, textarea:focus {
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 3px rgba(57,73,171,.1);
}

/* Nav searchbar input — borderless, no radius (container has the pill shape) */
.arxiv-nav__searchinput {
  flex: 1; border: none !important; background: transparent !important;
  outline: none !important; border-radius: 0 !important;
  font-family: var(--font-main); font-size: .875rem; color: var(--c-text);
  padding: 8px 0 !important; width: auto !important; box-shadow: none !important;
}
.arxiv-nav__searchinput::placeholder { color: var(--c-text-light); }

/* Hero searchbar input — borderless, no radius (container has the pill shape) */
.arxiv-hero__searchinput {
  flex: 1; border: none !important; background: transparent !important;
  outline: none !important; border-radius: 0 !important;
  font-family: var(--font-main); font-size: 1rem; color: var(--c-text);
  padding: 4px 0 !important; width: auto !important; box-shadow: none !important;
}
.arxiv-hero__searchinput::placeholder { color: var(--c-text-light); }

input[type="submit"], button[type="submit"]:not(.arxiv-nav__searchbtn):not(.arxiv-hero__searchbtn), .ep_form_action_button {
  background: var(--c-primary); color: #fff; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: .9rem; font-weight: 600;
  transition: background var(--trans), transform var(--trans);
}
input[type="submit"]:hover, button[type="submit"]:not(.arxiv-nav__searchbtn):not(.arxiv-hero__searchbtn):hover { background: var(--c-primary-light); }
.ep_form_action_button { border-radius: var(--radius-sm); }

/* Re-assert searchbar button shapes (higher specificity than button[type=submit]) */
button.arxiv-nav__searchbtn {
  border-radius: 100px !important; padding: 7px 16px !important;
  font-size: .8rem !important; background: var(--c-primary);
}
button.arxiv-hero__searchbtn {
  border-radius: 100px !important; padding: 12px 24px !important;
  font-size: .9rem !important; background: var(--c-primary);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.arxiv-footer {
  background: linear-gradient(135deg, #0d1257, #1a237e);
  color: rgba(255,255,255,.8); margin-top: 64px;
}
.arxiv-footer__inner {
  max-width: 1240px; margin: 0 auto; padding: 56px 24px 40px;
  display: grid; grid-template-columns: 320px 1fr; gap: 48px;
}
.arxiv-footer__brand { }
.arxiv-footer__logo { font-size: 2rem; display: block; margin-bottom: 8px; }
.arxiv-footer__name { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; display: block; }
.arxiv-footer__desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.arxiv-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.arxiv-footer__col h4 { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.arxiv-footer__col a { display: block; color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 10px; transition: color var(--trans); }
.arxiv-footer__col a:hover { color: #fff; }
.arxiv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px;
  text-align: center; font-size: .8rem; color: rgba(255,255,255,.4);
  max-width: 1240px; margin: 0 auto;
}
.arxiv-footer__bottom a { color: rgba(255,255,255,.55); }
.arxiv-footer__bottom a:hover { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════════════════════════════
   RESULT CARD (custom result.xml citation)
═══════════════════════════════════════════════════════════════ */
.arxiv-result-card {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 16px; align-items: start;
  background: var(--c-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
  padding: 20px 24px; margin-bottom: 12px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.arxiv-result-card:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
.arxiv-result-card__num {
  font-size: .78rem; font-weight: 700; color: var(--c-text-light);
  padding-top: 4px; text-align: center;
}
.arxiv-result-card__body { }
.arxiv-result-card__docs { margin-top: 10px; display: flex; gap: 8px; align-items: center; }
.arxiv-result-pdf-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--c-red-mid), var(--c-red));
  color: #fff !important; padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 600; text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(183,28,28,.25); transition: all var(--trans);
  margin-top: 10px;
}
.arxiv-result-pdf-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(183,28,28,.35); }

/* ═══════════════════════════════════════════════════════════════
   MESSAGES & ALERTS
═══════════════════════════════════════════════════════════════ */
.ep_msg_message { background: #e8f5e9; border-left: 4px solid #4caf50; border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 20px; }
.ep_msg_warning  { background: #fff8e1; border-left-color: var(--c-amber); }
.ep_msg_error    { background: #ffebee; border-left-color: var(--c-red); }
.ep_msg_message_content { display: flex; align-items: flex-start; gap: 12px; }
.ep_msg_message_icon { display: none; }
.ep_msg_message_text { font-size: .9rem; color: var(--c-text); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   BROWSE / VIEW PAGE CONTENT (ep_view_page articles)
═══════════════════════════════════════════════════════════════ */
/* Group-by selector */
.ep_view_group_by {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md); padding: 12px 20px; margin-bottom: 16px;
  font-size: .88rem; color: var(--c-text-muted);
}
.ep_view_group_by a { color: var(--c-primary-light); font-weight: 600; margin: 0 4px; }
.ep_view_group_by .ep_view_group_by_current { color: var(--c-primary); font-weight: 700; }

/* Letter jump nav */
.ep_view_jump_to, .ep_view_year_creators_name_jump {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md); padding: 12px 20px; margin-bottom: 20px;
  font-size: .82rem; line-height: 2.2;
}
.ep_view_jump_to a {
  display: inline-block; padding: 3px 9px; border-radius: var(--radius-sm);
  color: var(--c-primary-light); font-weight: 600; transition: all var(--trans);
}
.ep_view_jump_to a:hover { background: var(--c-primary-pale); color: var(--c-primary); }

/* Letter group heading */
.ep_view_group { margin-bottom: 8px; }
.ep_view_group h2, .ep_view_group > a[name] + h2,
.ep_view_page h2 {
  font-size: 1.1rem; font-weight: 800; color: var(--c-primary);
  padding: 10px 20px; background: var(--c-primary-pale);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: 2px solid var(--c-primary-light);
  margin: 0; letter-spacing: .5px;
}

/* Article entries inside groups — each <p> is one article */
.ep_view_page p {
  background: var(--c-surface); border: 1px solid var(--c-border);
  padding: 14px 20px; margin: 0; border-top: none;
  transition: background var(--trans);
  line-height: 1.65; font-size: .88rem; color: var(--c-text-muted);
}
.ep_view_page p:last-of-type {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-bottom: 20px;
}
.ep_view_page p:hover { background: #fafbff; }
/* Article title link in browse lists */
.ep_view_page p a em, .ep_view_page em {
  font-style: normal; font-weight: 600; color: var(--c-text);
}
.ep_view_page p > a { font-weight: 600; color: var(--c-text); }
.ep_view_page p > a:hover { color: var(--c-primary); }
/* Author name chip */
.ep_view_page .person_name, .person_name {
  background: var(--c-primary-pale); color: var(--c-primary);
  border-radius: 100px; padding: 1px 9px; font-size: .8rem;
  font-weight: 600; display: inline-block; margin: 2px 2px 4px 0;
}

/* Export bar — hide to avoid white box */
.ep_export_bar { display: none !important; }
.ep_search_feed { display: none !important; }

/* No-link decoration "up" link */
.no_link_decor { margin-bottom: 12px; }
.no_link_decor a { font-size: .82rem; color: var(--c-text-muted); }

/* ── Inner page title wrapper ── */
/* EPrints sometimes wraps content in these divs on dynamic pages */
.ep_search_page, .ep_search_page_simple, .ep_search_page_advanced {
  max-width: 100%;
}

/* Hide empty pagetop notifications */
.ep_rd_form_item:empty, .ep_rt_form_item:empty { display: none; }

/* ── Result card PDF button wrapper ── */
.arxiv-result-card__pdfwrap { margin-top: 10px; }
.arxiv-result-card__pdfwrap .arxiv-pdf-btn {
  padding: 8px 18px !important; font-size: .82rem !important;
}

/* ── View page index (view/ root) ── */
.ep_view_page > h2:first-child { display: none; } /* "Browse" heading */

/* ── Latest tool page ── */
.ep_latest_tool { padding: 20px 0; }

/* ── Login / account pages ── */
.ep_login_form, .ep_register_form {
  max-width: 520px; margin: 0 auto;
  background: var(--c-surface); border-radius: var(--radius-xl);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-lg);
  padding: 40px 44px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .arxiv-journals-grid { grid-template-columns: 1fr; }
  .arxiv-recent-grid { grid-template-columns: repeat(2, 1fr); }
  .arxiv-browse-grid { grid-template-columns: repeat(2, 1fr); }
  .arxiv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .arxiv-footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .arxiv-footer__links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .arxiv-nav__links, .arxiv-nav__search { display: none; }
  .arxiv-nav__hamburger { display: flex; }
  .arxiv-nav { height: auto; }
  .arxiv-hero { padding: 60px 20px 70px; min-height: auto; }
  .arxiv-hero__searchbox { flex-wrap: wrap; border-radius: var(--radius-xl); }
  .arxiv-hero__searchbtn { width: 100%; justify-content: center; border-radius: var(--radius-md); }
  .arxiv-stats-grid { grid-template-columns: repeat(2,1fr); transform: translateY(-24px); gap: 12px; }
  .arxiv-stat-card { padding: 20px 16px; }
  .arxiv-recent-grid { grid-template-columns: 1fr; }
  .arxiv-browse-grid { grid-template-columns: repeat(2, 1fr); }
  .arxiv-footer__links { grid-template-columns: 1fr 1fr; }
  .arxiv-journals-grid { grid-template-columns: 1fr; }
  .ep_search_result { grid-template-columns: 1fr; }
  .ep_tm_page_content { padding: 32px 16px; }
}
@media (max-width: 480px) {
  .arxiv-stats-grid, .arxiv-browse-grid { grid-template-columns: 1fr; }
  .arxiv-footer__links { grid-template-columns: 1fr; }
  .arxiv-section-header { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   JOURNAL TILES (homepage) — added 2026-05-30
   Compact, correct, honest journal cards (replaces round-robin lists)
═══════════════════════════════════════════════════════════════ */
.arxiv-journals-grid--tiles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.arxiv-journal-tile {
  display: flex; align-items: center; gap: 16px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 18px 22px; text-decoration: none;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.arxiv-journal-tile:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
  border-color: var(--c-primary-pale);
}
.arxiv-journal-tile__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; color: #fff; flex-shrink: 0;
  letter-spacing: .5px;
}
.arxiv-journal-card--blue   .arxiv-journal-tile__icon { background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light)); }
.arxiv-journal-card--teal   .arxiv-journal-tile__icon { background: linear-gradient(135deg, #00695c, var(--c-secondary)); }
.arxiv-journal-card--amber  .arxiv-journal-tile__icon { background: linear-gradient(135deg, #e65100, var(--c-amber)); }
.arxiv-journal-card--purple .arxiv-journal-tile__icon { background: linear-gradient(135deg, var(--c-purple), var(--c-purple-light)); }
.arxiv-journal-tile__info { flex: 1; min-width: 0; }
.arxiv-journal-tile__name { font-size: 1rem; font-weight: 700; color: var(--c-text); margin: 0 0 3px; }
.arxiv-journal-tile__url  { font-size: .78rem; color: var(--c-text-light); }
.arxiv-journal-tile__count {
  display: flex; flex-direction: column; align-items: flex-end;
  line-height: 1.1; flex-shrink: 0;
}
.arxiv-journal-tile__count strong { font-size: 1.35rem; font-weight: 800; color: var(--c-text); letter-spacing: -.5px; }
.arxiv-journal-tile__count span   { font-size: .72rem; color: var(--c-text-muted); }
.arxiv-journal-tile__arrow {
  font-size: 1.1rem; color: var(--c-text-light); flex-shrink: 0;
  transition: color var(--trans), transform var(--trans);
}
.arxiv-journal-tile:hover .arxiv-journal-tile__arrow { color: var(--c-primary); transform: translate(2px,-2px); }

/* ── Abstract-page full-text card (official_url button) polish ── */
.arxiv-fulltext-card {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin: 8px 0 24px;
}
.arxiv-fulltext-note { margin-top: 0; }

/* ── Stat-card numbers: keep grouping spaces from wrapping ── */
.arxiv-stat-card__num { white-space: nowrap; }

@media (max-width: 768px) {
  .arxiv-journals-grid--tiles { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   ARXIV — Journal tiles + Responsive layout   (marker: arxiv-resp-2026)
   ════════════════════════════════════════════════════════════════ */

/* ── Journal tiles (mapped from .arxiv-journal-card design) ── */
.arxiv-journals-grid--tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.arxiv-journal-tile {
  display: flex; align-items: center; gap: 16px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 18px 22px; text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.arxiv-journal-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--c-primary-pale); }
.arxiv-journal-tile__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; color: #fff; flex-shrink: 0; letter-spacing: .5px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
}
.arxiv-journal-card--blue   .arxiv-journal-tile__icon { background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light)); }
.arxiv-journal-card--teal   .arxiv-journal-tile__icon { background: linear-gradient(135deg, #00695c, var(--c-secondary)); }
.arxiv-journal-card--amber  .arxiv-journal-tile__icon { background: linear-gradient(135deg, #e65100, var(--c-amber)); }
.arxiv-journal-card--purple .arxiv-journal-tile__icon { background: linear-gradient(135deg, var(--c-purple), var(--c-purple-light)); }
.arxiv-journal-tile__info { flex: 1; min-width: 0; }
.arxiv-journal-tile__name { font-size: 1rem; font-weight: 700; color: var(--c-text); margin: 0 0 3px; }
.arxiv-journal-tile__url  { font-size: .78rem; color: var(--c-text-light); }
.arxiv-journal-tile__count { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; flex-shrink: 0; }
.arxiv-journal-tile__count strong { font-size: 1.35rem; font-weight: 800; color: var(--c-text); letter-spacing: -.5px; }
.arxiv-journal-tile__count span   { font-size: .72rem; color: var(--c-text-muted); }
.arxiv-journal-tile__arrow { font-size: 1.1rem; color: var(--c-text-light); flex-shrink: 0; transition: color .2s ease, transform .2s ease; }
.arxiv-journal-tile:hover .arxiv-journal-tile__arrow { color: var(--c-primary); transform: translate(2px, -2px); }
.arxiv-stat-card__num { white-space: nowrap; }

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .arxiv-stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .arxiv-journals-grid { grid-template-columns: 1fr; }
  .arxiv-journals-grid--tiles { grid-template-columns: repeat(2, 1fr); }
  .arxiv-recent-grid   { grid-template-columns: repeat(2, 1fr); }
  .arxiv-browse-grid   { grid-template-columns: repeat(2, 1fr); }
  .arxiv-footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .arxiv-nav__links, .arxiv-nav__search { display: none !important; }
  .arxiv-nav__hamburger { display: flex !important; }
  .arxiv-nav { height: auto; }
  .arxiv-hero { padding: 60px 20px 70px; min-height: auto; }
  .arxiv-hero__searchbox { flex-wrap: wrap; border-radius: var(--radius-xl); }
  .arxiv-hero__searchbtn { width: 100%; justify-content: center; border-radius: var(--radius-md); }
  .arxiv-stats-grid    { grid-template-columns: 1fr; transform: translateY(-20px); gap: 12px; }
  .arxiv-stat-card     { padding: 20px 16px; }
  .arxiv-journals-grid, .arxiv-journals-grid--tiles { grid-template-columns: 1fr; }
  .arxiv-recent-grid   { grid-template-columns: 1fr; }
  .arxiv-browse-grid   { grid-template-columns: 1fr; }
  .arxiv-footer__links { grid-template-columns: 1fr 1fr; }
  .ep_tm_page_content  { padding: 32px 16px; }
  .ep_summary_content_main { padding: 24px 18px !important; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .arxiv-footer__links { grid-template-columns: 1fr; }
  .arxiv-section-header { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════
   BROWSE / VIEW INDEX PAGES  (/view/year, /view/creators …)
   marker: arxiv-view-2026
   ════════════════════════════════════════════════════════════════ */

/* Wrapper container for the index menu (years / letters / etc.) */
.ep_view_menu,
.ep_view_index {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  margin-bottom: 28px;
}

/* Column tables EPrints uses for new_column_at layouts → seamless */
.ep_view_menu table,
.ep_view_menu tbody,
.ep_view_menu tr { width: 100%; border: none; background: none; }
.ep_view_menu td,
.ep_view_menu th {
  border: none; background: none; padding: 0 14px 0 0; vertical-align: top;
}

/* The list of links itself → wrapping pill row */
.ep_view_menu ul,
.ep_view_menu ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ep_view_menu li { list-style: none; margin: 0; padding: 0; }

/* Each browsable item (year, letter, name) → themed button */
.ep_view_menu a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--radius-md);
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  font-family: var(--font-main); font-weight: 700; font-size: .95rem;
  color: var(--c-text); text-decoration: none; line-height: 1;
  transition: background var(--trans), border-color var(--trans),
              color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.ep_view_menu a:hover {
  background: var(--c-primary-pale); border-color: var(--c-primary-light);
  color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

/* Count after a label e.g. "2026 (1 234)" */
.ep_view_menu .ep_view_count,
.ep_view_menu a span { color: var(--c-text-muted); font-weight: 600; font-size: .82rem; }

/* Intro / "Number of items" blurb on the index page */
.ep_view_blurb,
.ep_view_intro,
p.ep_view_count_total {
  color: var(--c-text-muted); font-size: .9rem; margin-bottom: 20px;
}

/* Fallback: plain link lists inside the page content of a view index
   (covers themes where the menu has no .ep_view_menu wrapper) */
div#main_content .ep_view_page > ul,
div.ep_tm_page_content .ep_view_page > ul {
  list-style: none; margin: 0 0 28px; padding: 24px 28px;
  display: flex; flex-wrap: wrap; gap: 10px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
div#main_content .ep_view_page > ul > li { list-style: none; margin: 0; }
div#main_content .ep_view_page > ul > li > a,
div.ep_tm_page_content .ep_view_page > ul > li > a {
  display: inline-flex; align-items: center;
  padding: 10px 18px; border-radius: var(--radius-md);
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  font-weight: 700; font-size: .95rem; color: var(--c-text); text-decoration: none;
  transition: all var(--trans);
}
div#main_content .ep_view_page > ul > li > a:hover {
  background: var(--c-primary-pale); border-color: var(--c-primary-light);
  color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .ep_view_menu, .ep_view_index { padding: 18px 16px; }
  .ep_view_menu table, .ep_view_menu tbody, .ep_view_menu tr,
  .ep_view_menu td { display: block; width: 100%; padding: 0; }
  .ep_view_menu a { padding: 9px 14px; font-size: .9rem; }
}

/* ══ FIX: Remove white background from hero search form
   The form element itself gets white bg from browser/EPrints defaults;
   only the inner .arxiv-hero__searchbox should have the white pill. ══ */
form.arxiv-hero__search { background: transparent !important; }

/* ══ FIX: Remove white background from nav search form and prevent
   it from overflowing below the nav height into the hero section. ══ */
.arxiv-nav__search form { background: transparent !important; }
.arxiv-nav { overflow: hidden; }

/* ══ FIX: form[action*="/cgi/search"] matches hero + nav forms too.
   Reset those back to zero so only the search-page form gets styled. ══ */
form.arxiv-hero__search,
.arxiv-nav__search form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}

/* ══════════════════════════════════════════════════════════════════
   BEHANCE-QUALITY POLISH — full design upgrade
   ══════════════════════════════════════════════════════════════════ */

/* 1. Fix body background being overridden by z_eprints_services_template.css */
body { background: var(--c-bg) !important; }

/* 2. Hero dot-grid decorative pattern */
.arxiv-hero__dots {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px; z-index: 0;
}
.arxiv-hero__content { position: relative; z-index: 1; }

/* 3. Browse card icon wrappers */
.arxiv-browse-card__icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.arxiv-browse-card__icon-wrap svg { width: 24px; height: 24px; }
.arxiv-browse-card__icon-wrap--blue   { background: #e8f1ff; color: #2563eb; }
.arxiv-browse-card__icon-wrap--teal   { background: #e6f7f5; color: #0d9488; }
.arxiv-browse-card__icon-wrap--amber  { background: #fef3e2; color: #d97706; }
.arxiv-browse-card__icon-wrap--purple { background: #f3eeff; color: #7c3aed; }

/* 4. Browse card arrow */
.arxiv-browse-card__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-primary-pale); color: var(--c-primary);
  transition: all var(--trans); margin-left: auto; flex-shrink: 0;
}
.arxiv-browse-card:hover .arxiv-browse-card__arrow {
  background: var(--c-primary); color: #fff; transform: translateX(3px);
}

/* 5. Section header link with SVG arrow alignment */
.arxiv-section-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9rem; color: var(--c-primary);
  text-decoration: none; transition: all var(--trans);
}
.arxiv-section-link:hover { gap: 9px; }
.arxiv-section-link svg { transition: transform var(--trans); }
.arxiv-section-link:hover svg { transform: translateX(3px); }

/* 6. Article card title — sentence case baseline style */
.arxiv-article-card__title {
  font-size: 1.02rem; font-weight: 600; line-height: 1.45;
  color: var(--c-text); margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.arxiv-article-card__title a {
  color: inherit; text-decoration: none;
}
.arxiv-article-card__title a:hover { color: var(--c-primary); }

/* 7. "To'liq o'qish" read-more link */
.arxiv-article-card__readmore {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .85rem; font-weight: 600; color: var(--c-primary);
  text-decoration: none; margin-top: 10px; transition: gap var(--trans);
}
.arxiv-article-card__readmore:hover { gap: 8px; }

/* 8. Author line with SVG person icon */
.arxiv-article-card__authors {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; color: var(--c-muted); margin-bottom: 6px;
}
.arxiv-article-card__authors svg { flex-shrink: 0; opacity: .65; }

/* 9. Journal tiles — premium card hover */
.arxiv-journal-card {
  border-radius: var(--radius-lg); background: var(--c-surface);
  border: 1.5px solid var(--c-border); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.arxiv-journal-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.arxiv-journal-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: 0 8px 32px rgba(37,99,235,.12);
  transform: translateY(-4px);
}
.arxiv-journal-card:hover::before { opacity: .04; }

/* 10. Stats counter section polish */
.arxiv-stats__item { text-align: center; }
.arxiv-stats__number {
  font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark, #1d4ed8));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.arxiv-stats__label {
  font-size: .88rem; color: var(--c-muted); margin-top: 4px;
}

/* 11. Hero badge (chip above title) */
.arxiv-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 100px; padding: 6px 14px;
  font-size: .82rem; font-weight: 600; color: #fff;
  margin-bottom: 18px;
}
.arxiv-hero__badge svg { opacity: .9; }

/* 12. Hero CTA buttons */
.arxiv-hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.arxiv-hero__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-pill, 100px);
  font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: all .22s cubic-bezier(.4,0,.2,1);
}
.arxiv-hero__btn--primary {
  background: #fff; color: var(--c-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.arxiv-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.arxiv-hero__btn--ghost {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.arxiv-hero__btn--ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* 13. Smooth page-wide transitions */
a, button { transition: color var(--trans), background var(--trans),
  border-color var(--trans), box-shadow var(--trans), transform var(--trans); }

/* 14. Selection color */
::selection { background: var(--c-primary); color: #fff; }

/* 15. Scrollbar (webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: var(--c-border); border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-muted); }

/* 16. Focus ring */
:focus-visible {
  outline: 2.5px solid var(--c-primary); outline-offset: 3px;
  border-radius: 4px;
}

/* 17. Nav polish — logo size & spacing */
.arxiv-nav__logo img { height: 36px; width: auto; }
.arxiv-nav__links a {
  font-weight: 500; font-size: .92rem; padding: 6px 10px;
  border-radius: var(--radius-sm); transition: all var(--trans);
}
.arxiv-nav__links a:hover {
  background: var(--c-primary-pale); color: var(--c-primary);
}

/* 18. Footer polish */
.arxiv-footer a:hover { color: var(--c-primary); }

/* 19. Responsive tweaks */
@media (max-width: 640px) {
  .arxiv-stats__number { font-size: 1.8rem; }
  .arxiv-hero__btn { padding: 11px 20px; font-size: .88rem; }
  .arxiv-browse-card__icon-wrap { width: 40px; height: 40px; }
}



/* From: /var/www/arxivacademics/lib/static/style/auto/accessibility.css */

table.ep_accessibility_results {
	border: 1px solid #000;
	width: 100%;
	border-collapse: collapse;
}

table.ep_accessibility_results > tbody > tr > td, table.ep_accessibility_results th {
	border: 1px solid #000;
	padding: 0.4em;
	text-align: center;
}
	
table.ep_accessibility_results > tbody > tr > td:last-child {
        text-align: left;
}

.ep_accessibility_bad {
	color: #8b0000;
}

.ep_accessibility_good {
        color: #006400;
}




/* From: /var/www/arxivacademics/lib/static/style/auto/actions.css */

.ep_login_tools img {
	vertical-align: middle;
	margin: 0px 25px;
}

ul.ep_action_list {
	margin: 0;
	padding: 0;
	white-space: nowrap;
	display: inline-block;
}

ul.ep_action_list li {
	display: inline-block;
	margin-left: .5em;
}

ul.ep_action_list li:first-child {
	margin-left: 0;
}

dl.ep_action_list {
	margin: 0;
	padding: 0;
}

dl.ep_action_list dt, dl.ep_action_list dd {
	margin: 0;
}

dl.ep_action_list dt {
	margin-top: .5em;
	width: 15em;
	text-align: center;
	line-height: 2em;
	margin-bottom: -1.5em;
}
dl.ep_action_list dt:first-child {
	margin-top: 0;
}

dl.ep_action_list dd {
	position: relative;
	left: 16em;
	top: -.5em;
	margin-right: 16em;
	overflow: hidden;
}

div.ep_action_list .ep_action_row{
        margin-bottom: 10px;
}

div.ep_action_list .ep_action_row div:first-child{
        width: 30%;
        min-width: 200px;
        vertical-align: top;
}

div.ep_action_list .ep_action_row div:last-child{
        width: 70%;
}

div.ep_action_list .ep_action_row div:first-child form{
        display: block;
        text-align: center;
}

div.ep_action_list .ep_action_row div:first-child form input{
        width: 200px;
}

div.ep_action_list .ep_action_row div{
        display: inline-block;
}




/* From: /var/www/arxivacademics/lib/static/style/auto/batchedit.css */

#BatchEdit_changes input
{
  max-width: 150px;
}
#BatchEdit_changes textarea
{
  max-width: 200px;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/blister.css */


/* EPrints 3 blister bar style */

/* ep_blister */



.ep_blister_bar {
	margin: auto;
	display: table;
	border-spacing: 0;
        border-collapse: collapse;
        padding: 0;	
}
.ep_blister_bar > div {
        display: table-row;
}
.ep_blister_bar > div > div {
        display: table-cell;
}
.ep_blister_join {
	background-image: url(images/blister_arrow.png);
	background-repeat: no-repeat;
	background-position: center center;
	width: 20px;
}
.ep_blister_node, .ep_blister_node_selected {
	text-align: center;
	border-style: solid;
	border-radius: 3px;
}
.ep_blister_node {
	border-width: 1px;
	padding: 3px 10px;
}
.ep_blister_node_selected {
	border-width: 2px;
	padding: 2px 10px;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/citations.css */

span.document_filename
{
	font-size: 90%;
        line-height: 20px;
}

span.document_format
{
}




/* From: /var/www/arxivacademics/lib/static/style/auto/colors.css */

/*
 *
 * EPrints Default Colour Scheme
 *
 */

body {
	color: #000000;
	background-color: #ffffff;
}
a, .ep_tm_key_tools a:visited {
	color: #0645ad;
}
a:visited {
	color: #0b0080;
}
a:hover, .ep_tm_key_tools a:hover {
	color: #3366bb;
}
a:active, .ep_tm_key_tools a:active {
	color: red;
}
h1, h2, h3, h4 {
    color: #606060;
}
.ep_view_page h2 {
	border-bottom: solid 1px #606060;
}

/* template.css */

.ep_tm_header {
	background-color: #fff;
	background-image: url(images/logo_background_light.png);
	background-repeat: repeat-y;
}
.ep_tm_menu, .ep_tm_menu li:hover {
	background-image: url(images/bar_glass.png) ;
	background-position: 0px 5px;
}
.ep_tm_footer {
	border-color: #204f76;
}
.ep_tm_menu, .ep_tm_menu ul {
	background-color: #204f76;
}
.ep_tm_menu {
	/* fixed to 30px high */
	border-bottom: 1px solid #fff;
}
.ep_tm_menu li:hover {
	background-color: #279ae2;
}
.ep_tm_menu a, .ep_tm_menu a:visited {
	color: white;
}
.ep_tm_searchbar, .ep_columns_title, td.ep_columns_alter, .ep_toolbox_title {
	color: #606060;
}
.ep_tm_searchbar, .ep_columns_title, td.ep_columns_alter {
	background-color: #ccc;
	background-image: url(images/bar_24px.png);
	background-repeat: repeat-x;
}
.ep_tm_searchbarbox {
	border-color: #606060;
}
.ep_tm_key_tools li {
	border-left: 1px solid #e8e8e8;
	border-right: 1px solid #606060;
}
.ep_tm_key_tools li:first-child {
	border-left: none;
}
.ep_tm_key_tools li:last-child {
	border-right: none;
}

/* form.css */

.ep_form_action_button, .ep_form_internal_button, .ep_tm_searchbarbutton, .ep_blister_node_selected {
	border-color: #5b97c7 #13324a #13324a #5287b3;
	background-image: url(images/bar_12px.png);
	background-color: #1f4f76;
	color: white;
}
.ep_form_action_button:active, .ep_form_internal_button:active, .ep_tm_searchbarbutton:active, .ep_blister_node_selected:active {
	border-color: #13324a #5287b3 #5287b3 #13324a;
	background-color: #276496;
}

/* blister.css */

.ep_blister_node {
	border-color: #cccccc;
	background-color: #e8e8ff;
	background-image: url(images/bar_solid_12px.png);
	color: #000000;
}
.ep_blister_node:active {
	border-color: #276496;
}

/* summary.css surround.css */

.ep_summary_box_title, .ep_summary_box_body, .ep_sr_title_bar, .ep_sr_content, .ep_sr_collapse_bar
,.ep_tab_panel
,.ep_toolbox_content /* toolbox.css */
,.ep_upload_doc /* upload.css */
,.ep_search_buttons, .ep_search_controls, .ep_search_controls_bottom /* search.css */
,.ep_view_group_by /* view.css */
{
	background-color: #e8e8ff;
}
.ep_summary_box_title, .ep_sr_title_bar, .ep_sr_collapse_bar {
	background-image: url(images/bar_solid_12px.png);
	background-repeat: repeat-x;
}
.ep_sr_content, .ep_summary_box_body,
.ep_tab_panel,
.ep_toolbox_content /* toolbox.css */
,.ep_upload_doc /* upload.css */
{
	background-image: url(images/bar_solid_24px.png);
	background-repeat: repeat-x;
}
.ep_summary_box_title, .ep_summary_box_body, .ep_sr_title_bar, .ep_sr_content, .ep_sr_collapse_bar
,.ep_tab_panel, .ep_tab_bar li, .ep_tab_bar li a
,.ep_toolbox_content /* toolbox.css */
,.ep_upload_doc /* upload.css */
{
	border-color: #ccc;
}

/* tabs.css */

.ep_tab_bar li a {
	background-image: url(images/bar_solid_24px.png);
	background-repeat: repeat-x;
}

/* unselected tab */
.ep_tab_bar li a {
	background-color: #bbf;
}

/* selected tab */
.ep_tab_bar li.ep_tab_selected a {
	background-color: #fff;
}

/* general.css */

th.ep_title_row
{
	border-color: #808080;
	background-image: url(images/bar_24px.png);
	background-color: #ccc;
	color: #333;
}

th.ep_row, td.ep_row {
	border-color: #bbb;
}
th.ep_row, td.ep_row {
	border-bottom-style: dashed;
}
td.ep_row {
	border-left-style: dashed;
}

/* messages.css */

.ep_msg_message_content, .ep_msg_warning_content, .ep_msg_error_content, .ep_msg_other_content {
	background-image: url(images/bar_solid_48px.png);
	background-repeat: repeat-x;
}

.ep_msg_message_content {
	background-color: #80ff80;
	border-color: #80ff80;
}
.ep_msg_error_content {
	background-color: #ffc0c0;
	border-color: #ffc0c0;
}

.ep_msg_warning_content {
	background-color: #ffc080;
	border-color: #ffc080;
}

.ep_msg_other_content {
	background-color: #9999ff;
	border-color: #9999ff;
}

/* columns.css */

th.ep_columns_title, td.ep_columns_alter {
	border-color: #888;
}
td.ep_columns_cell {
	border-color: #888 #ccc;
}

.ep_search_buttons, .ep_search_controls, .ep_search_controls_bottom /* search.css */
,.ep_view_group_by /* view.css */
{
	border-color: #cccccc;
	background-image: url(images/bar_24px.png);
}



/* From: /var/www/arxivacademics/lib/static/style/auto/columns.css */


/* paginated columns */

.ep_columns {
	margin: auto;
}

td.ep_columns_cell {
	border-style: none dashed solid none;
	border-width: 1px;
}
td.ep_columns_cell:first-child {
	border-left-style: dashed;
}

th.ep_columns_title, td.ep_columns_alter {
	border-width: 1px;
	font-weight: normal;
}
th.ep_columns_title {
	border-style: solid solid solid none;
}
td.ep_columns_alter {
	border-style: none solid solid none;
}
th.ep_columns_title:first-child, td.ep_columns_alter:first-child {
	border-left-style: solid;
}
th.ep_columns_title a {
	font-weight: normal;
}


td.ep_columns_no_items {
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 0.5em;
	text-align: center;
	font-size: 120%;
}

.ep_columns_add {
	text-align: center;
}

.ep_columns_add select {
	max-width: 95%;
}

.ep_columns_title_inner, .ep_columns_alter_inner {
	display: table;
	border-width: 0; 
	width: 100%;
}

.ep_columns_title_inner > div, .ep_columns_alter_inner > div {
	display: table-row;
}

.ep_columns_title_inner > div > div, .ep_columns_alter_inner > div > div {
        display: table-cell;
}

.ep_columns_alter_inner > div > div:nth-child(1) {
	text-align: left;
	width: 14px;
}

.ep_columns_alter_inner > div > div:nth-child(2) {
        text-align: center;
	width: 100%;
}

.ep_columns_alter_inner > div > div:nth-child(3) {
        text-align: right;
	width: 14px;
}


.ep_columns_title_inner_sort {
	width: 22px; 
	text-align: right;
	vertical-align: middle;
}

.ep_columns_title_inner_sort img {
	border: 0px;
	padding: 4px;
}




/* From: /var/www/arxivacademics/lib/static/style/auto/drop.css */


/* style for ajax suggestion drops */

.ep_drop_target {
}

.ep_drop_target ul {
	margin: 0px;
	padding: 4px;
	list-style: none;
	background-color: white;
	border: 1px dotted #888;
	z-index: 6;
}
	
.ep_drop_target ul li {
	margin: 0px;
	padding: 3px;
	list-style: none;
	border-top: 1px dashed #ccc;
	cursor: pointer;
	width: 100%;
}
.ep_drop_target ul li.ep_first {
	border-top: none;
}

.ep_drop_target ul li.selected {
	background-color: #e0e0ff;
}

.ep_drop_target ul ul {
	display: none;
}

.ep_drop_loading {
	margin: 0px;
	padding: 4px;
	height: 24px;
	text-align: center;
	border: 1px dotted #888;
	z-index: 6;
	position: absolute;
	background-color: #fff;
	background-image: url(images/loading.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.ep_draggable {
	cursor: move;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/export.css */

/* EPrints 3 export style */

.ep_export_bar {
	display: flex; 
	justify-content: space-between;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/fields.css */


/* style for metafields */

dl.ep_field_set_long dt {
	margin-bottom: 0.2em;
	font-weight: bold;
}

dl.ep_field_set_long dd {
	margin-bottom: 0.5em;
}

.ep_compound, .ep_compound_list > div {
	display: table; 
	border: 1px; 
	border-spacing: 0; 
	border-collapse: separate; 
	padding: 2px;
}

.ep_compound_header_row, .ep_compound_data_row, .ep_compound_list > div > div {
	display: table-row;
}

.ep_compound_header_cell, .ep_compound_data_row > div, .ep_compound_list > div > div > div {
	display: table-cell; 
	padding: 0.2em 0.5em;
}

.ep_compound_header_cell {
	font-weight: bold;
}

.ep_compound_single {
	display: table; 
	border: 1px;
}

#c6_editperms_1_type_label::after {
        content: "";
}

.ep_itemref_desc {
	padding: 0 0.5em;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/fileselector.css */

.ep_fileselector dl {
	margin: 0px 0px 0px 25px;
	padding: 0px 0px;
}
.ep_fileselector dd {
	margin: 0px 0px;
}
.ep_fileselector input {
/*	float: left; */
}
.ep_fileselector label {
	cursor: pointer;
}
.ep_fileselector dt.ep_fileselector {
	clear: left; /* clear the floated input */
	display: block;
	cursor: pointer;
	background-image: url(data:image/gif;base64,R0lGODlhEAAQAOMMAJuHDKKNBcCmCu3NEuzTOO/ZU/PhePTjgfTmj/XpmvXqovXtsP///////////////yH5BAEKAA8ALAAAAAAQABAAAARXUIA5xbsYA8SRAVkIHET5UagFGGVZvPALrkM9CEGuSw+A64bEYqEoDmbD5CJhaDYVSKdUCu0tptjETIGdanvcrvMLCIuDM+bZgJh13vADSIKqUyyhfCgCADs=);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 20px;
	padding-bottom: 2px;
}
.ep_fileselector dt.ep_fileselector_open {
	background-image: url(data:image/gif;base64,R0lGODlhEAAQAOMMAIp5CJqGCrmhCdy+Be3OIe3UP+/YUvLeaPLgdPTlifTolvTro////////////////yH5BAEKAA8ALAAAAAAQABAAAARZUIQ5xbsYh8QTClm4FeRBnYEVIERbHEYsF+Da3rhbH3lPPwFeL7cbGAcBgHIpAQqWgEJisVBYkUCqdpE4eL2K2uJLJoez5XSipkiXz5uOXP55SFD4VGi/jwAAOw==);
}



/* From: /var/www/arxivacademics/lib/static/style/auto/form.css */


/* Form related styles */

form {
	display: inline;
}

select, input.ep_form_text, textarea {
	padding: 1px 2px 1px 2px;
	margin-right: 4px;
	border: solid 1px #ccc;
}

.ep_form_example {
	font-weight: bold;
	color: blue;
}

/* buttons */

.ep_form_button_bar {
	text-align: center;
	padding: 4px;
	clear: both;
	margin-top: 10px;
	margin-bottom: 10px;
}

.ep_form_action_button, .ep_form_internal_button {
	text-align: center;
	border-width: 2px;
	border-style: solid;
	border-radius: 3px;
	padding: 2px 20px;
	cursor: pointer;
}
.ep_form_internal_button {
	padding: 1px 14px;
	background-position: 0px -2px;
}

/* form fields */

.ep_form_field_help {
        font-size: small ;
}

.ep_form_field_name {
        padding-top: 1em;
	font-weight: bold;
}

.ep_form_field_input {
        padding-bottom: 3pt;
}

/* input fields grid */


.ep_form_input_grid th {
	vertical-align: middle;
	text-align: center;
	font-size: 80%;
}
.ep_form_input_grid > div > div {
	vertical-align: middle;
}

.ep_form_input_grid_pos {
	padding-right: 4px;
}
.ep_form_input_grid_arrows {
	white-space: nowrap;
	padding-top: 2px;
	padding-bottom: 2px;
}


.ep_form_input_grid_wide {
	text-align: left;
}

.ep_field_legend {
	font-style: italic;
	display: none;
}
.ep_field_legend:after {
	content: ":";
}

.ep_multi_heading::after {
	content: ":";
}

.ep_search_fields > div > div, .ep_table_row > div {
	border-top: dashed #bbf 1px;
	vertical-align: top;
	padding: 0.5em;
}

.ep_table_row.ep_first > div {
	border-top: 0;
}

.ep_multi_heading, .ep_multi_heading_legend {
	border-right: dashed #bbf 1px;
	font-weight: bold;
	text-align: right;
}

.ep_multi {
	width: 100%;
	display: table;
}

.ep_login_form_table {
	margin:auto; 
	display: table;	
}

.ep_login_form_table > div {
	display: table-row;
}

.ep_login_form_table > div > div, .ep_login_form_table > div > label {
        display: table-cell;
}

.ep_form_input_grid {
	display: table; 
	border: 0; 
	padding: 0; 
	border-spacing: 0; 
	border-collapse: separate;
}

.ep_form_input_grid > div {
	display: table-row;
}

.ep_form_input_grid > div > div {
	display: table-cell; 
}

.ep_form_input_grid > div > div.heading {
	text-align: center;
	font-weight: bold; 
}

.ep_option_list {
	display: table; 
	border: 0;
}

.ep_option_list_row {
	display: table-row;
}

.ep_option_list_cell {
        display: table-cell;
}

.ep_option_list_option {
	margin-left: 2em;
}


.ep_field_set_medium,  .ep_boolean_list {
	display: inline-block;
	margin: 0;
}

.ep_field_set_medium > dd, .ep_boolean_list > dd {
	float: left;	
	margin: 0;
	padding-top: 0.2em;
	padding-bottom: 0.5em;
}

.ep_field_set_medium > dt, .ep_boolean_list > dt {
	float: left;
	clear: both;
}

.ep_over_word_limit {
	color: red;
	font-weight: bold;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/general.css */

body {
	margin: 0;
	font-family: Sans-serif;
	font-size: 80%;
}

/* left-align if we're in a div (e.g. ep_block) that centres */
ul {
	text-align: left;
}

img {
        border:0;
}

.ep_no_js { 
	display: none; 
}

.ep_no_js_inline { 
	display: none; 
}

.ep_no_js_table_cell { 
	display: none; 
}

.ep_hide { 
	display: none; 
}

h1, h2 {
	font-weight: bold;
}
h1 {
	margin: 0px;
	margin-top: 10px;
	font-size: 2.3em;
	text-align: center;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.5em;
}
h4 {
	font-size: 1.2em;
}

hr {
	border: 0px;
	color: #ccc;
	background-color: #ccc;
	height: 2px;
}

dl.ep_normal > dt {
	font-weight: bold;
}

dl#ep-homepage-menu dt {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 1em 1em 0.5em 1em;
	box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	clip-path: inset(-6px -2px 0 -2px);
}

dl#ep-homepage-menu dd {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 0.5em 1em 1em 1em;
	margin-left: 0;
	margin-bottom: 1em;
	box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	clip-path: inset(0 -2px -6px -2px);
}
 

.ep_required {
	border: 0;
	display: inline;
}

.ep_toggle a, a.ep_toggle {
	text-decoration: none;
}

th.ep_row {
	padding-right: 0.25em;
	text-align: right;
	width: 20%;
	border-width: 1px;
}
td.ep_row {
	padding-left: 0.25em;
	text-align: left;
	border-width: 1px;
}

th.ep_title_row {
	border-width: 1px;
	border-style: solid;
	border-left: none;
	border-right: none;
	padding: 0.1em 0.5em 0.1em 0.5em;
	font-size: 100%;
	height: 2em;
	font-weight: normal;
}

.ep_title_row_inner {
        display: table;
        width: 100%;
}

.ep_title_row_inner > div {
	display: table-row;
}

.ep_title_row_inner > div > div {
	display: table-cell;
}

.ep_title_row_inner > div > div:first-child {
	text-align: left;
	margin-right: 1em;
}

.ep_title_row_inner > div > div:last-child {
        text-align: right;
        margin-left: 1em;
	font-size: 80%;
}

.ep_highlight {
	padding: 0.5em;
	border: solid 2px #ff8888;
	background-color: #ffeeee;
}

.ep_block {
	width: auto;
	margin: 0.25em auto 0.25em auto;
	text-align: center;
}
.ep_block td {
	text-align: left;
}
.ep_doc_icon
{
	padding: 2px;
}

.no_link_decor a {
	text-decoration: none;
}

.ep_table_row {
	display: table-row;
}

div.ep_table {
	display: table;
}

.ep_table > div, .ep_table_row {
	display: table-row;
}

.ep_table > div > div, .ep_table_row > div, .ep_table_cell {
	display: table-cell;
	padding: 0.3em;
}

.ep_no_border {
	border: 0;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/history.css */

/* EPrints 3 history style */

.ep_history_item {
	padding: 0.3em; 
	margin-top: 2em; 
	border: solid 1px black; 
	background-color: #ccc;
}

.ep_history_action {
	padding: 0.3em; 
	background-color: black; 
	color: white; 
	font-weight: bold;

}

.ep_history_details {
        padding: 0.3em;
	margin-bottom: 2em; 
	border: solid 1px black !important;
}

.ep_history_action a {
	color: yellow;
}

.ep_history_xmlblock {
	margin: 0 0 0 0; 
	padding: 3px 3px 3px 3px; 
	border-left: 1px 
	dashed black; 
	border-bottom: 1px dashed black; 
	font-size: 120%;
}

table.ep_history_diff_table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse; 
	padding: 0;
}

table.ep_history_diff_table th, table.ep_history_diff_table td {
	width: 50%;
	vertical-align: top;
	text-align: left;
}

.ep_history_diff_table_add {
	background-color: #cfc;
}

.ep_history_diff_table_remove {
        background-color: #fcc;
}

.ep_history_diff_table_change {
        background-color: #ffc;
}

#ep_workflow_views_panel_1 .ep_paginate_list .ep_search_result,
#ep_workflow_views_panel_1 .ep_paginate_list .ep_search_result > div {
        display: block;
}




/* From: /var/www/arxivacademics/lib/static/style/auto/homepage.css */

ul.ep_block_menu {
	list-style-position: outside;
	list-style-type: none;
	padding: 0;
}

ul.ep_block_menu > li {
	border: 1px solid #ccc;
  	padding: 0.2em 1em;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	margin-bottom: 1em;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/icontable.css */


table.ep_icontable {
	border-collapse: collapse;
}
table.ep_icontable th {
	border: solid 1px #999;
	background-color: #fff;
	text-align: center;
}
table.ep_icontable td {
	padding-left: 4px;
	border: solid 1px #999;
}

.ep_icontable {
	border-collapse: collapse;
	display: table;
}

.ep_icontable > div {
	display: table-row;
}

.ep_icontable > div > div {
        display: table-cell;
        border: solid 1px #999;
	padding: 1px;
}

.ep_icontable > div > div:first-child {
	background-color: #fff;
        text-align: center;
}

.ep_icontable > div > div:last-child {
        padding-left: 4px;
}

.ep_icontable > div > div img {
	border-width: 0;
	vertical-align: middle
}




/* From: /var/www/arxivacademics/lib/static/style/auto/import.css */

/* EPrints 3 import style */

.ep_import_bar {
	display: table; 
	width: 100%;
}

.ep_import_bar > div {
	display: table-row;
}

.ep_import_bar > div > div {
	text-align: center;
	display: table-cell;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/items.css */


/* Items Screen */

.ep_items_filters {
	text-align: center;
	margin-top: 10px;
}

.ep_items_filters img {
	border-width: 0px;
	margin-left: 10px;
	vertical-align: -2px;
}

.ep_items_filters a {
	color: #000000;
	text-decoration: none;
}


td.ep_columns_cell_inbox {
	background-color: #ffc;
}
td.ep_columns_cell_buffer {
	background-color: #dde;
}
td.ep_columns_cell_archive {
	background-color: #cfc;
}
td.ep_columns_cell_deletion {
	background-color: #ccc;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/latest.css */


/* latest and latest tool */

div.ep_latest_result {
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}

div.ep_latest_tool_result {
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}

div.ep_latest_tool_list {
	display: table;
	width: 100%;
}




/* From: /var/www/arxivacademics/lib/static/style/auto/lightbox.css */

#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 100; text-align: center; }
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
/* #hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;} */
#hoverNav a{ outline: none;}

/* #prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(images/lightbox/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(images/lightbox/nextlabel.gif) right 15% no-repeat; } */

#hoverNav { height: 30px; }
#prevLink, #nextLink { width: 49%; height: 100%; display: block; }
#prevLink { left: 0; float: left; background: url(images/lightbox/prevlabel.gif) left 0 no-repeat; }
#nextLink { right: 0; float: right; background: url(images/lightbox/nextlabel.gif) right 0 no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}	 	

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }

#lightboxMovie {}

/* scale more nicely on narrow devices */
#lightbox #outerImageContainer,
#lightbox #imageDataContainer
{
  max-width: 95%;
  height: fit-content!important;
}
#lightbox #lightboxImage,
#lightbox #lightboxMovie,
#lightbox #lightboxMovie video
{
  max-width: 100%;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/mail.css */



.ep_mail_view {
	border: dashed 2px #ccc;
	margin-top: 20px;
	background-color: #eee;
	font-size: 1.2em;
}

.ep_mail_header {
	margin: 4px; 
	padding: 2px;
	font-family: monospace;
}

.ep_mail_body {
	margin: 4px;
	padding: 2px;
}

.ep_mail_body textarea {
	background-color: #ccc;
	border: solid #888 1px;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/messages.css */


/* Message styles - used to provide alerts and errors */

.ep_msg_message, .ep_msg_warning, .ep_msg_error, .ep_msg_other {
	margin-top: 10px;
	margin-bottom: 10px;
}

.ep_msg_message_icon, .ep_msg_warning_icon, .ep_msg_error_icon, .ep_msg_other_icon {
	padding: 1em; 
	display: table-cell; 
	vertical-align: middle;
}

.ep_msg_message_content, .ep_msg_error_content, .ep_msg_warning_content, .ep_msg_other_content {
	border-style: solid;
	border-width: 1px;
}

.ep_msg_message_text, .ep_msg_error_text, .ep_msg_warning_text, .ep_msg_other_text {
	padding: 1em; 
	display: table-cell; 
	vertical-align: middle; 
	text-align: left;
}

.ep_msg_message_text p:first-child, .ep_msg_error_text p:first-child, .ep_msg_warning_text p:first-child, .ep_msg_other_text p:first-child {
	margin-top: 0;
}

.ep_msg_message_text p:last-child, .ep_msg_error_text p:last-child, .ep_msg_warning_text p:last-child, .ep_msg_other_text p:last-child {
        margin-bottom: 0;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/multi.css */



/* 
   Styles for the multi-field component.

   ep_multi_*

*/

table.ep_multi
{
	width: 100%;
}

table.ep_multi tr:first-child th.ep_multi_heading,
table.ep_multi tr:first-child td.ep_multi_input,
table.ep_multi tr:first-child td.ep_multi_help 
{
	border-top: none;
}

th.ep_multi_heading
{
	border-top: dashed #bbf 1px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-right: 0.5em;
	text-align: right;
}

td.ep_multi_input
{
	border-top: dashed #bbf 1px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 0.5em;
	padding-right: 0.5em;
	border-left: dashed #bbf 1px;
}

td.ep_multi_help
{
	white-space: nowrap;
	border-top: dashed #bbf 1px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 0.5em;
	vertical-align: top;
	text-align: right;
}

/* help bits */

.ep_multi_inline_help 
{
	padding-bottom: 0.5em;
}
	



/* From: /var/www/arxivacademics/lib/static/style/auto/nojs.css */


/*  only loaded if the browser has javascript turned off (or does
 *  not support it.
 */

.ep_no_js { display: block; }

.ep_no_js_inline { display: inline; }

.ep_no_js_table_cell { display: table-cell; }

.ep_only_js { display: none; }

.ep_only_js_inline { display: none; }

.ep_only_js_table_cell { display: none; }



/* From: /var/www/arxivacademics/lib/static/style/auto/preview.css */


/* 
   Styles for the file preview popup.

   ep_preview_*

*/


.ep_preview
{
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 400px;	
}

.ep_preview table
{
	border: solid 1px black;
	background-color: white;
	padding: 4px;
	margin: auto;
}

.ep_preview_title
{
	padding-top: 3px;
	text-align: center;
	background-color: white;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/print.css */

@media print {

.ep_noprint {
	display: none;
}

}



/* From: /var/www/arxivacademics/lib/static/style/auto/progress.css */

div#progress {
	margin: 0px auto;
	width: 382px;
}

.progressmeter {
    font-size: 10pt;
    text-align: center;
}

.progressmeter table {
}

.progressmeter th {
    font-weight: bold;
    text-align: right;
}

.progressmeter td {
    text-align: left;
}

.finished {
    color: #667799;
}

.progressmeter .meter {
    position: relative;
    background-color: lightgrey;
    border: 2px solid #667799;
    height: 20px;
    width: 380px;
}

.progressmeter .meter .amount {
	margin: 0px auto 0px 0px;
    background-color: #667799;
    width: 0px;
    height: 20px
}

.progressmeter .meter .percent {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 20px;
    z-index: 1000;
    line-height: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.UploadMethod_file_progress_table {
	width: 550px;
	margin: 0 auto;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/savedsearches.css */



table.ep_savedsearches {
	margin: 10px auto 10px auto;
}

table.ep_savedsearches th {
	border-bottom: 1px solid #ccc;
}
table.ep_savedsearches td {
	border-bottom: 1px solid #ccc;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/search.css */


/* EPrints 3 search form style */



/* buttons are on the form, controls on the results */
.ep_search_buttons, .ep_search_controls, .ep_search_controls_bottom {
	border-style: solid none;
	border-width: 1px;
	text-align: center;
	padding: 4px 0px;
	margin: 4px 0px 12px 0px;
}

.ep_search_fields {
	margin-top: 1em;
	margin-bottom: 1em;
}
.ep_search_fields th {
	padding: 4px;
}
	
.ep_search_fields td {
	padding: 4px;
}
	

.ep_search_control
{
	padding: 0px 4px 0px 4px;
}

.ep_search_export {
	margin: 0.25em auto 0.25em auto;
	text-align: center;
}

.ep_search_export div[role="toolbar"] {
	margin: 1em;
}

.ep_search_reorder {
	margin: 0.4em auto 0 auto;
	text-align: center;
}

.ep_search_tool {
	white-space: nowrap;
}
.ep_search_tool img {
	vertical-align: -2px;
	padding-left: 0.5em;
}
.ep_search_tool a {
	text-decoration: none;
}


.ep_search_feed {
	white-space: nowrap;
}
.ep_search_feed img {
	vertical-align: -2px;
	padding-left: 0.5em;
}
.ep_search_feed a {
	text-decoration: none;
	color: #666;
}

.ep_search_results
{
	margin: 1em auto 1em auto;
}

.ep_search_desc
{
	text-align: center;
	margin: 0.25em 0 0 0;
}

.ep_search_result 
{
	display: table-row;
}

.ep_search_result > div
{
	padding: 4px 0.5em 4px 4px;
	border-bottom: dashed #bbf 1px;
	display: table-cell;
	vertical-align: middle;
}

.ep_search_result_docs
{
	white-space: nowrap;
	float: right;
	min-height: 48px;
}

.ep_paginate_list
{
	margin: auto;
	display: table;
	width: 100%;
}

.ep_search_field_name
{
	font-weight: bold;
	margin-top: 0.5em;
}

input.ep_form_search_advanced_link, input.ep_form_search_advanced_link:hover {
        border: none;
        text-decoration: underline;
        background: none;
        color: #00f;
        cursor: pointer;
}

span.search_desc {
	font-style: italic;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/storage.css */


/*
 *    Styles for storage manager.
 *
 *       ep_storage_*
 *      
 */

.ep_storage_heading {
	text-align: center;
	margin: 0;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/subjectinput.css */


/* 
   Styles for the subject component.

   ep_subjectinput_*

*/

div.ep_subjectinput_tree {
	margin-left: 25px;
}
.ep_subjectinput_tree dl {
	margin: 0px 0px 0px 15px;
	padding: 0px 0px;
}
.ep_subjectinput_tree dl dt {
	margin: 0px 0px;
	padding-left: 18px;
	line-height: 18px;
}
.ep_subjectinput_tree dl dd {
	margin-left: 0px;
}
.ep_subjectinput_tree dl dt.ep_subjectinput_tree {
	cursor: pointer;
	background: url(images/plus.png) no-repeat;
}
.ep_subjectinput_tree dl dt.ep_subjectinput_tree_open {
	background: url(images/minus.png) no-repeat;
}

.ep_subjectinput_toggle {
	text-decoration: none;
	color: #000000;
}

.ep_subjectinput_selections {
	margin: 0.5em auto 0.5em auto;
	margin-top: 0.5em; 
	padding: 0.5em; 
}

.ep_subjectinput_selected {
	font-weight: bold;
}

.ep_subjectinput_selected_subject {
	font-weight: bold;
}

ul.ep_subjectinput_subjects {
	list-style: none;
}
ul.ep_subjectinput_subjects li {
	margin-top: 3px;
	margin-bottom: 3px;
	list-style: none;
}
ul.ep_subjectinput_subjects img {
	vertical-align: -2px;
}


.ep_subjectinput_selections {
	padding-bottom: 10px;
	border-bottom: dashed #808080 1px; 
	margin-bottom: 10px;
}
.ep_subjectinput_selections td.ep_first {
	border-top: none;
}

.ep_subjectinput_selections td {
	border-top: dashed #ccc 1px; 
}

.ep_subjectinput_results {
	border: dashed #c8cbdf 1px; 
	margin-top: 0.5em; 
	padding: 0.5em; 
	background-color: white;
	list-style: none;
}

.ep_subjectinput_results td.ep_first {
	border-top: none;
}

.ep_subjectinput_results td {
	border-top: dashed #ccc 1px; 
}

.ep_subjectinput_add_button, .ep_subjectinput_remove_button {
	border: solid blue 1px;
	padding: 1px;
	background-color: transparent;
	font-size: 70%;
	color: blue;
}


.ep_subjectinput_searchbar {
	text-align: center;
}

/* End of subject component section */



/* From: /var/www/arxivacademics/lib/static/style/auto/summary.css */


/* Item Summary */

.ep_summary_content {
}
.ep_summary_content_top {
}
.ep_summary_content_bottom {
}
.ep_summary_content_left {
	float: left;
}
.ep_summary_content_right {
	float: right;
}
.ep_summary_content_after {
	clear: both;
}


.ep_summary_content_left .ep_summary_box {
	width: 200px;
	margin-right: 10px;
}
.ep_summary_content_right .ep_summary_box {
	width: 200px;
	margin-left: 10px;
}


.ep_summary_box {
	margin-bottom: 10px
}
.ep_summary_box_title {
	font-weight: normal;
	padding: 2px 6px 2px 6px; 
	font-weight: bold;
	font-size: 115%;
	border-style: solid;
	border-width: 1px;
}
.ep_summary_box_body {
	padding: 2px 6px 2px 6px; 
	border-style: none solid solid solid;
	border-width: 1px;
}
.ep_summary_box_title a {
	text-decoration: none;
}
.ep_summary_box_title img
{
	vertical-align: -1px;
}

.ep_summary_page_actions dt {
	display: inline;
}
.ep_summary_page_actions dd {
	display: inline-block;
	margin-left: 1em;
}

.ep_summary_page_document {
	clear: both;
}
.ep_summary_page_document > span {
	float: left;
	margin-left: 0.5em;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/surround.css */


/* EPrints 3 default workflow component-surround style */

/* ep_sr */

.ep_sr_component {
	padding: 0px;
	margin-top: 10px;
}
.ep_sr_component .ep_sr_title_bar {
	padding: 2px 6px 2px 6px; 
}
.ep_sr_component .ep_sr_title_bar_inner {
	width: 100%;
	display: table;
        border-spacing: 0;
        border-collapse: collapse;
        padding: 0;
}
.ep_sr_component .ep_sr_title_bar_inner > div {
        display: table-row;
}
.ep_sr_component .ep_sr_title_bar_inner > div > div {
        display: table-cell;
}
.ep_sr_component .ep_sr_title_bar_inner > div > div:last-child {
        text-align: right;
}

.ep_sr_component .ep_sr_title_bar_inner {
        width: 100%;
        border-spacing: 0;
        border-collapse: collapse;
        padding: 0;
}

.ep_sr_component .ep_sr_title {
	font-weight: bold;
	font-size: 115%;
	color: #444;
}
.ep_sr_component .ep_sr_content {
	clear: both;
	padding: 6px;
	border-style: none solid solid solid;
	border-width: 1px;
}

/* collapse bar */

.ep_sr_collapse_bar {
	padding: 2px 6px 2px 6px; 
	font-weight: bold;
	font-size: 115%;
	margin-top: 10px;
	border-style: solid;
	border-width: 1px;
}
.ep_sr_collapse_bar a {
	text-decoration: none;
}
.ep_sr_title a {
	text-decoration: none;
}
.ep_sr_collapse_link img
{
	vertical-align: -1px;
}

/* help style - not primetime */

.ep_sr_component .ep_sr_help {
	margin-bottom: 8px;
}
.ep_sr_component .ep_sr_show_help {
	white-space: nowrap;
}
.ep_sr_component .ep_sr_show_help a {
	text-decoration: none;
}	
.ep_sr_component .ep_sr_hide_help {
	white-space: nowrap;
}
.ep_sr_component .ep_sr_hide_help a {
	text-decoration: none;
}	
.ep_sr_component .ep_sr_title_bar {
	border-style: solid;
	border-width: 1px;
}
.ep_sr_show_help img {
	vertical-align: -2px;
}
.ep_sr_hide_help img {
	vertical-align: -2px;
}


/* used for multi, maybe should be elsewhere */
.ep_sr_component .ep_sr_help_chunk {
	border-bottom: 1px solid #888;
	padding-bottom: 4px; 
	margin-bottom: 4px;
}

.ep_sr_component .ep_form_input_grid {
	margin: auto;
}
.ep_multi_input .ep_form_input_grid {
	margin-left: 0px;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/tabs.css */


/* Tab Bar */

.ep_tab_panel, .ep_tab_bar li, .ep_tab_bar li a {
	border-width: 1px;
	border-style: solid;
}

/* selected tab */
.ep_tab_bar li.ep_tab_selected a {
	border-bottom-width: 0;
}

/* panel contents */
.ep_tab_panel {
}

/* tab text */
.ep_tab_bar a {
/*	color: #000000; */
}

/* remaining styles are structural */

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

.ep_tab_bar li {
	float: left;
	padding: 0 0;
	margin: 0 0;
	border-top-width: 0;
	border-right-width: 0;
	border-left-width: 0;
	list-style-type: none;
}

.ep_tab_bar li:first-child a {
	margin-left: 1.5em;
}

.ep_tab_bar li a {
	text-decoration: none;
	text-align: center;
	display: block;
	margin-right: 1.5em;
	padding: 3px 8px 4px 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	margin-bottom: -1px; /* overwrite bottom-margin of li */
	border-bottom-width: 0;
}

.ep_tab_panel {
	border-top-width: 0;
	padding: 12px;
	clear: left;
}

.ep_tab_panel > div > table {
	width: 100%;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/template.css */


/* EPrints 3 template styles */
/* prefix all styles with ep_tm */

hr.ep_tm_last {
	color: #152d4e;
	background-color: #152d4e;
}


/* deprecated in 3.3 */
.ep_tm_logo img {
	float: right;
	padding: 4px;
	border-style: none;
}

.ep_tm_site_logo img {
	border-style: none;
	padding: 10px 10px;
}

.ep_tm_archivetitle, .ep_tm_archivetitle:visited {
	font-size: 40px;
	text-decoration: none;
	margin: 10px;
}

.ep_tm_main {
        margin: 1em;
}

/* Menu Bar */

.ep_tm_menu, .ep_tm_key_tools {
	clear: both;
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.ep_tm_key_tools {
	display: block;
}

.ep_tm_menu {
	height: 30px;
	line-height: 30px;
}

.ep_tm_menu, .ep_tm_menu ul {
/*	background-color: #204f76; */
}

.ep_tm_menu li {
	float: left;
}
.ep_tm_menu ul {
}

.ep_tm_menu a, .ep_tm_menu a:visited {
	display: block;
	padding: 0px 20px;
	text-decoration: none;
	white-space: nowrap;
	font-weight: bold;
}

.ep_tm_menu ul
{
	list-style: none;
	position: absolute;
	margin: 0;
	padding: 0;
}

.ep_tm_menu ul li {
	float: none;
}

.ep_tm_menu ul a
{
	text-align: left;
}

.ep_tm_key_tools li {
	list-style: none;
	display: inline;
	float: left;
	padding: 0;
	margin: 0;
}

.ep_tm_key_tools li a:hover {
}

.ep_tm_key_tools a {
/*	white-space: nowrap; */
}

/* end of menu bar */

/* Action Menu Bar */

.ep_tm_key_tools li {
	padding: 0px 6px;
}

.ep_tm_key_tools li:first-child {
	padding-left: 0px;
}

/* end of Action Menu Bar */

/* Search bar */

.ep_tm_searchbar {
	padding: 4px 10px;
}

.ep_tm_searchbar form {
	white-space: nowrap;
}

.ep_tm_searchbarbutton {
	text-align: center;
	padding: 1px 4px;
	margin: 0px;
	margin-left: 4px;
	font-size: 85%;
	background-position: 0px -2px;
	border-width: 1px;
	border-radius: 3px;
}

.ep_tm_searchbarbox {
	font-size: 80%;
	padding: 2px;
	border-width: 1px;
	border-style: solid;
}

/* end of search bar */

#ep_tm_languages {
	display: inline;
}
#ep_tm_languages a {
	margin-left: 4px;
}

.ep_tm_searchbar {
        border-width:0;
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
}

.ep_tm_searchbar td {
        padding: 0;
        margin: 0;
}

.ep_tm_page_content {
        max-width:1024px;
        width:auto;
        margin-left: auto;
        margin-right: auto;
        margin-top:10px;
}

.ep_tm_eprints_logo {
        float: right;
        margin-left: 1em;
}

.ep_tm_footer {
	clear: both;
	margin-top: 20px;
	font-size: 90%;
	border-top-width: 2px;
	border-top-style: solid;
	padding: 10px 10px 0px 10px;
}
.ep_tm_footer hr {
	display: none;
}

@media only screen and (min-width:600px) and (max-width:1180px)
{
	.ep_tm_footer img { height: 15px; width: auto !important; }
}
@media only screen and (min-width:0px) and (max-width:600px)
{
    .ep_tm_footer img { display: none; }
}
@media only screen and (min-width:0px) and (max-width:570px)
{
	footer { height: 54px; }
}



/* From: /var/www/arxivacademics/lib/static/style/auto/toolbox.css */


/* Toolbox styles - used to subdivide some content */

.ep_toolbox {
	margin-bottom: 10px;
}

.ep_toolbox_title {
	padding: 2px 10px 2px 10px;
}

.ep_toolbox_content {
	padding: 10px;
	border-width: 1px;
	border-style: solid;
}



/* From: /var/www/arxivacademics/lib/static/style/auto/upload.css */


/* 
   Styles for the upload component.

   ep_upload_*

*/

.ep_upload_newdoc
{
	text-align: center;
/*	margin-top: 1em;
	margin-bottom: 1em; */
}

.ep_upload_fields {
	display: table;
}
.ep_upload_fields > div {
	display: table-row;
}
.ep_upload_fields > div > div {
        display: table-cell;
}


.ep_upload_fields th
{
	text-align: right;
}

/* Document section */

.ep_upload_doc
{
	margin-bottom: 0.5em;
	border-style: solid;
	border-width: 1px;
}

.ep_upload_doc .ep_upload_doc_title_bar {
	padding: 0px 6px 0px 6px; 
	border-bottom: solid 1px #d8dbef;
}
.ep_upload_doc .ep_upload_doc_title {
	color: #444;
}
.ep_upload_doc .ep_upload_doc_content {
	clear: both;
	padding: 6px;
}

.ep_update_doc_delete {
	white-space: nowrap;
}
.ep_update_doc_delete input {
	vertical-align: -2px;
}

.ep_update_doc_options {
	white-space: nowrap;
}
.ep_update_doc_options img {
	vertical-align: -2px;
	border: none;
}
.ep_update_doc_options a {
	text-decoration: none;
}

.ep_upload_doc_toolbar
{
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	text-align: center;
}

.ep_upload_files
{
/*	border: dashed #c8cbdf 1px; 
	text-align: center;
	margin-top: 0.5em; 
	padding: 0.5em; 
	background-color: white; */
}

.ep_upload_file_table 
{
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0.5em;
}
.ep_upload_add_file_toolbar
{
	margin-top: 0.5em;
}

.ep_upload_doc_expansion_bar
{
	text-align: right;
	padding: 2px .5em;
}
.ep_upload_doc_expansion_bar a
{
	cursor: pointer;
	text-decoration: none;
}

/* End of Document section */

/* Drag and drop */

.ep_dropbox {
	border-width: 2px;
	border-style: dashed;
	border-color: #4ea;
	background-color: #fff;
	font-weight: bold;
	font-size: 110%;
	padding: 40px 0px;
}

/* End of Drap and drop */


.ep_upload_file_label {
        margin-right: 0.3em;
	font-weight: bold;
}


.UploadMethod_file_progress_table {
	display: table;
}

.UploadMethod_file_progress_table > div {
	display: table-row;
}

.UploadMethod_file_progress_table > div > div {
        display: table-cell;
	padding: 0.5em;
}


.ep_upload_doc_title_bar_inner {
	display: table;
	width: 100%;
	border-width: 0;
}

.ep_upload_doc_title_bar_inner > div {
	display: table-row;
}

.ep_upload_doc_title_bar_inner > div > div {
        display: table-cell;
	vertical-align: middle;
}

.ep_upload_doc_title_bar_inner_left {
        text-align: left;
        width: 60%;
}


.ep_upload_doc_title_bar_inner > div > div:last-child {
	text-align: right;
	width: 20%;
}

.ep_upload_doc_icon_info {
	display: block;
	border-width: 0;
	padding: 0.4em;
}

.ep_upload_doc_icon_info > div {
	display: inline-block;
}

.ep_upload_doc_icon_info > div:first-child {
	text-align: center;
}

.ep_upload_doc_icon_info > div.ep_upload_doc_title {
	text-align: left;
	vertical-align: top;
	margin: 0.3em;
}

.ep_upload_doc_actions_inner {
	display: table;
	width: auto;
	margin-left: auto;
	margin-right: 0;
}

.ep_upload_doc_actions_inner > div {
	display: table-row;
}

.ep_upload_doc_actions_inner > div > div {
        display: table-cell;
	padding: 0.2em;
}

.ep_update_doc_options label {
	vertical-align: top;
}




/* From: /var/www/arxivacademics/lib/static/style/auto/view.css */



/* spacing between page elements */
.ep_view_page h2 {
	margin-top: 30px;
}
.ep_view_blurb {
	margin-top: 20px;
}
.ep_view_timestamp {
	margin-top: 30px;
	text-align: right;
}

.ep_view_group_by_current {
	font-weight: bold;
}

.ep_view_group_by {
	border-style: solid none;
	border-width: 1px;
	text-align: center;
	padding: 4px 0px;
	margin: 4px 0px 12px 0px;
}

.ep_view_cols {
	width: 100%;
	margin-top: 1em;
	display: table;
	border: 0;
        padding: 0;
        border-spacing: 0;
        border-collapse: separate;
}

.ep_view_cols > div {
	display: table-row;
}

.ep_view_col {
	display: table-cell;
	vertical-align: top;
}
.ep_view_cols_2 .ep_view_col { width: 50%; }
.ep_view_cols_3 .ep_view_col { width: 33.3%; }
.ep_view_cols_4 .ep_view_col { width: 25%; }
.ep_view_cols_5 .ep_view_col { width: 20%; }
.ep_view_cols_6 .ep_view_col { width: 16.6%; }
.ep_view_cols_7 .ep_view_col { width: 14.28%; }
.ep_view_cols_8 .ep_view_col { width: 12.5%; }

.ep_view_cols ul {
	margin-top: 0px;
	margin-bottom: 0px;
}


	



/* From: /var/www/arxivacademics/lib/static/style/auto/z_eprints_services_template.css */

/* override the default style with on a little cleaner */

  body
  {
    background-color: #eaeaea;
  }
  #wrapper
  {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    padding: 5px;
    max-width: 1280px;
    margin: 10px auto;
  }
  #main_content
  {
    min-height: 640px;
  }
  h1
  {
    padding-bottom: 5px;
  }
  h1, h2, h3, h4
  {
    color: #000000;
  }
  .ep_tm_menu,
  .ep_tm_menu li:hover
  {
    background-image: none;
    color: black;
  }
  .ep_tm_footer
  {
    height: 34px;
  }
  .ep_sr_content, .ep_summary_box_body, .ep_tab_panel, .ep_toolbox_content, .ep_upload_doc
  {
    background-image: none;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  }
  .ep_tm_searchbar, .ep_columns_title, td.ep_columns_alter
  {
    background-image: none;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  }
  .ep_search_buttons, .ep_search_controls, .ep_search_controls_bottom, .ep_view_group_by
  {
    background-image: none;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  }
  .ep_summary_box_title, .ep_sr_title_bar, .ep_sr_collapse_bar 
  {
    background-image: none;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  }
  .ep_blister_node
  {
    background-image: none;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  }
  .ep_form_action_button, .ep_form_internal_button, .ep_tm_searchbarbutton
  {
    background-image: none;
    margin-right: 8px;
    min-width: 145px;
    max-width: 200px;
    padding-left: 5px;
    padding-right: 5px;
    white-space: normal;
  } 
  #ep_eprint_view_panels .ep_form_action_button 
  {
    min-width: 145px;
    max-width: 145px;
  }
  .ep_tm_searchbarbutton 
  { 
    min-width: inherit; 
  }

  .ep_blister_node_selected
  {
    background-image: none;
  }
  dl.ep_action_list dd
  {
    margin-bottom: 15px;
  }



/* From: /var/www/arxivacademics/lib/static/style/auto/z_metafield.css */

table.ep_metafield_compound,
table.ep_metafield_compound th,
table.ep_metafield_compound td
{
  border: 0.5px solid lightgray;
  border-spacing: 0px;
}

table.ep_metafield_compound th,
table.ep_metafield_compound td
{
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 5px;
  padding-right: 5px;
}



/* From: /var/www/arxivacademics/archives/arxiv/cfg/static/style/auto/zz_arxiv.css */

/* arxiv.academicsbook.com -- full-text / PDF button styling */
.arxiv-fulltext-card{margin:.4em 0 1.2em;display:flex;flex-direction:column;gap:.35em}
.arxiv-pdf-btn{display:inline-flex;align-items:center;gap:.55em;width:max-content;
  background:#b3201f;color:#fff!important;text-decoration:none!important;
  padding:.62em 1.25em;border-radius:8px;font-weight:600;font-size:1.02em;line-height:1;
  box-shadow:0 2px 6px rgba(0,0,0,.18);transition:background .15s ease,transform .05s ease}
.arxiv-pdf-btn::before{content:"\1F4C4";font-size:1.1em}
.arxiv-pdf-btn::after{content:"\2197";font-weight:700;opacity:.85}
.arxiv-pdf-btn:hover{background:#8f1a19;text-decoration:none!important}
.arxiv-pdf-btn:active{transform:translateY(1px)}
.arxiv-fulltext-note{color:#666;font-size:.86em}
/* also beautify native document download buttons + card */
a.ep_document_link{display:inline-block;background:#b3201f;color:#fff!important;
  padding:.45em 1.05em;border-radius:8px;text-decoration:none!important;font-weight:600;margin-top:.3em}
a.ep_document_link:hover{background:#8f1a19}
.ep_summary_page_document{padding:.5em .2em}



/* From: /var/www/arxivacademics/archives/arxiv/cfg/static/style/auto/zzz_local.css */


/* 
 * This CSS file will be applied after all the built in styles.
 * 
 * CSS files are loaded in alphabetic order, hence the  "zzz" in 
 * the filename to force it to load after the other css files!
 * 
 * Add any local over-rides here. 
 * 
 * To totally replace a system css file, create a file of the same 
 * name in this directory. eg. messages.css
 * 
*/


