/* /Views/Shared/_BookCardPArtial.cshtml.rz.scp.css */
/* Make owl items stretch and let the card fill the height */
.owl-carousel .owl-item[b-oxld1kzyjn] {
    display: flex;
}

/* Make the card itself a flex column that fills the item */
.book-card[b-oxld1kzyjn] {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.3em; /* rounded corners */
    overflow: hidden; /* clip image to radius */
    box-shadow: 0 0.5em 0.5em rgba(0, 0, 0, 0.35); /* stronger shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

    /* Fix the cover image height so all tops align */
    .book-card .card-img-top[b-oxld1kzyjn] {
        width: 100%;
        aspect-ratio: 3 / 4; /* like a real book – 3:4 shape */
        object-fit: cover; /* crop to fill area without distortion */
        display: block;
    }

    /* Let the body stretch to fill remaining space */
    .book-card .card-body[b-oxld1kzyjn] {
        flex: 1;
    }
/* /Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-7jpei6rzhk] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-7jpei6rzhk] {
  color: #0077cc;
}

.btn-primary[b-7jpei6rzhk] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-7jpei6rzhk], .nav-pills .show > .nav-link[b-7jpei6rzhk] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-7jpei6rzhk] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-7jpei6rzhk] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-7jpei6rzhk] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-7jpei6rzhk] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-7jpei6rzhk] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
/* /Views/Shared/_ResourceCard.cshtml.rz.scp.css */
/* keeps all covers same shape */
.cover-wrap[b-cfi0cb8af6]{
  aspect-ratio: 2 / 3;          /* typical book cover */
  width: 100%;
  overflow: hidden;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  background: #f1f3f5;          /* neutral bg for transparent/odd images */
}

/* makes image fill nicely without distortion */
.cover-img[b-cfi0cb8af6]{
  width: 100%;
  height: 100%;
  object-fit: cover;            /* crop to fill */
  object-position: center;      /* focus center */
  display: block;
  transition: transform .2s ease;
}

/* small hover lift */
.card:hover .cover-img[b-cfi0cb8af6]{
  transform: scale(1.03);
}
