body {
    font-family: "Lexend", sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
  }
  .book-form .row {
    display: flex;
  }
  
  .form-container {
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  h2 {
    text-align: center;
    color: #333;
    margin: 50px 0;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #555;
  }
  
  input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
  }
  .dev {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    transition: 2ms;
  }
  .dropdown .dev option:hover {
    display: block;
  }
  
  textarea {
    resize: vertical;
  }
  
  button {
    padding: 10px;
    background-color:red;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 2ms;
    margin: 20px 0;
  }
  
  button:hover {
    border-color: red;
    background-color: white;
    border: solid;
    color: red;
  }
  
  #formStatus {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
  }
  