/* library_bookshelf.css - Bookshelf UI skin (no blur) */

.library-shelf{
  min-height: calc(100vh - 110px);
  position: relative;
}

.library-shelf::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("/static/img/library_bookshelf.png");
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  pointer-events: none;
}

.library-shelf-inner{
  position: relative;
  z-index: 1;
}

.book-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.book-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.10);
  padding: 14px 14px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.book-card:hover{
  transform: translateY(-1px);
  transition: transform 120ms ease;
}
.book-title{
  font-weight: 700;
  font-size: 0.98rem;
}
.book-meta{
  color: rgba(15,23,42,0.65);
  font-size: 0.82rem;
  margin-top: 6px;
}
.breadcrumb{
  background: rgba(255,255,255,0.75);
  border-radius: 14px;
  padding: 8px 12px;
  backdrop-filter: blur(6px);
}
.file-row{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 14px;
  padding: 10px 12px;
}
.file-row a{ text-decoration:none; }
