/* CSS for Navbar */
#logo{
    transition-duration: 0.5s;
}

#logo:hover{
    transform: scale(1.09);
}

.fa-solid{
    margin-right: 8px;
}

#nav_a{
	color: #ffffff;
  position: relative;
  text-decoration: none;
  margin-left: 15px;
  margin-right: 15px;
  font-weight: bold;
  padding-left: 0px;
  padding-right: 0px;
}

#nav_a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

#nav_a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

#login{
	color: #ffffff;
  position: relative;
  text-decoration: none;
  margin-left: 15px;
  margin-right: 15px;
  font-weight: bold;
  padding-left: 0px;
  padding-right: 0px;
}

#login::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

#login:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}


/* CSS for Dashboard Page */
#list,#head{
    text-align: center;
    align-items: center;
}

#cart_list{
  margin-left: 15px;
  margin-right: 15px;
  border-style: groove;
  padding: 15px;
  background-color: gray;
}

body{
  background-color: gainsboro;
}

#btn{
    background-color: rgb(0, 255, 255);
    border: none;
    border-radius: 10px;
    width: 80px;
    font-weight: bold;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    transition-duration: 0.5s;
}

#btn:hover{
    background-color: rgb(77, 172, 172);
}

#book_count{
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: red;
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 2px;
}