body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}
#libraryContainer {
  display: grid;
  grid-auto-flow: column;         
  grid-template-rows: repeat(3, auto); 
  justify-content: start;         
  padding: 10px;
}


.outside-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.button1 {
  background-color: #4ca8af;
  color: white;
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

button:hover {
  background-color: #45a049;
}

dialog {
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  background-color: #daebdc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 1rem;
}

input {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.inside-button {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.button2 {
  background-color: #4ca8af;
  color: black;
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

.book-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  background-color: #daebdc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 2rem;
}

.book-card h3 {
  text-align: center;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0.5rem 0;
}

.book-card p {
  text-align: center;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0.25rem 0;
}
