.nli-books-wrapper {
direction: rtl;
}
.nli-books-heading {
text-align: center;
margin: 0 0 20px 0;
color: #333;
}
.nli-books-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
max-width: 1200px;
margin: 0 auto 30px auto;
}
.nli-book-card {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
}
.nli-book-image {
text-align: center;
margin-bottom: 15px;
height: 220px;
display: flex;
align-items: center;
justify-content: center;
}
.nli-book-image img {
max-width: 100%;
height: auto;
max-height: 220px;
object-fit: contain;
}
.nli-book-noimage {
height: 220px;
width: 100%;
background: #e0e0e0;
display: flex;
align-items: center;
justify-content: center;
color: #666;
}
.nli-book-title {
font-size: 16px;
margin: 0 0 10px 0;
color: #333;
}
.nli-book-meta {
margin: 0 0 5px 0;
font-size: 14px;
color: #555;
}
.nli-book-button {
display: block;
text-align: center;
padding: 10px;
border-radius: 4px;
font-size: 14px;
font-weight: bold;
margin-top: auto;
text-decoration: none;
}
.nli-book-button-disabled {
background: #cccccc;
color: #666666;
cursor: not-allowed;
pointer-events: none;
}
.nli-book-button:not(.nli-book-button-disabled) {
background: #2a6fdb;
color: #ffffff;
}
.nli-book-button:not(.nli-book-button-disabled):hover {
background: #1d54ad;
}
.nli-books-empty {
text-align: center;
color: #666;
}