body {
    font-family: Arial, sans-serif;
    margin: 40px;
}

input[type="text"] {
    padding: 8px;
    width: 300px;
}

button {
    padding: 8px 12px;
    cursor: pointer;
}

.results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.book {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
}

.book img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.meta {
    font-size: 0.9em;
    color: #555;
}

.description {
    font-size: 0.9em;
    margin-top: 10px;
    max-height: 120px;
    overflow: hidden;
}

a {
    display: inline-block;
    margin-top: 8px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-box {
  background: white;
  width: 300px;
  margin: 100px auto;
  padding: 20px;
}

.closeBtn {
  float: right;
  cursor: pointer;
}

