body,html{
    height: 100%;
}

.bg{ 
    /* background image*/
    background-image: url("images/background.jpg");
  
    /* Full height */
    height: 100vh;
    
  
    /* Center and scale the image*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 

}

    /*--Navbar-->*/
.navbar{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    
   
}

    /*Menu*/
.sidepanel  {
    width: 0;
    position: fixed;
    z-index: 1;
    height: 250px;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
      
.sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: 0.3s;
}
      
.sidepanel a:hover {
    color: white;
}
      
.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}
      
.openbtn {
    font-size: 27px;
    cursor: pointer;
    background-color: white;
    color: black;
    padding-bottom: 13px;
    border: none;
    
}
      
.openbtn:hover {
    background-color:#444;
}

#book-table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }

  .bookContainer{
    height: 500px;
    padding-top: 30px;
  }

  #book-table td, #book-table th {
    border: 1px solid #ddd;
    padding: 8px;
  }

  #book-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #02a1ce;
    color: white;
  }
  #iHeader{
      background-color: white;
  }

  .descriptionL{
      font-size: 40px;
      font-weight: bolder;
  }

  .descriptionR{
      display: flex;
      flex-direction: row-reverse;
      
  }
  #user-info{
    font-style: italic;
      color: black;
  }

  /*modal style*/
  /* The Modal (background) */
.modal, .upModal{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content, .update-modal-content{
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
  }
  h2{
      text-align: center;
  }

  /*input{ 
    width: 100%;
    height:auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }*/



  .modal-container{
      display: flex;
      flex-direction: row;
      justify-content: center;
      width: 100%;
      height: auto;
  }
  
  /* The Close Button */
  .close, .updateClose{
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
 input{
     
        padding: 20px;
        width: 100%;
        border-radius: 5px;
        border: 1px solid #aaaaaa;
        color: #475466;
      
}
#addBookBtn{
    width:fit-content;
    height:fit-content;
    background-color: #02a1ce;
    font-size: medium;
}

.menu-choice{
    display: none;
}