html{
    font-family: 'Times New Roman', Times, serif;
}

.tag-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.book-list-img{
    
}

.book-item{

    display: flex;
    flex-direction: row;
    gap: 30px;
    

}

.old-paper {
  background-image: url("../images/paper-6af2116e35700d978f6e20caa45c145f.png");

  background-size: cover;            /* or 'contain' or 'auto' depending on the effect */
  background-repeat: repeat;         /* or 'no-repeat' */
  background-color: #fdf6e3;         /* fallback in case image fails to load */
  background-blend-mode: multiply;   /* helps blend the color with texture */
  
  padding: 2rem;
  color: #4b3621;
  font-family: 'Garamond', serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 1px solid #d3c8a3;
}

.old-paper {

  /* existing styles */
  filter: sepia(0.2) contrast(1.1);
  text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

.embedded-text {
  font-family: 'Times New Roman', Times, serif;
  color: #4b3621; /* dark brownish text */
  text-shadow:
    1px 1px 0 #fdf6e3,   /* highlight (top-left) */
   -1px -1px 0 #cfc6a4;  /* shadow (bottom-right) */
}

.book-img-left-div{
    display: flex;
  align-items: center; /* vertically centers content */
}
    

.book-list-img {

    width: 100px;
    height: auto;
  cursor: pointer;
  border: 2px solid #a67c00;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
 
}

.book-list-img:active {
  transform: scale(0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


.book-info-right-div{

    

}

.book-info-right-div h4,
.book-info-right-div p {
  margin: 1px 0;        /* Reduce vertical margin */
  line-height: 1.5;     /* Reduce line spacing */
}
