*{
    caret-color: transparent;
}
body{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('../media/library.jpg');
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: cover;
}
h1{
    color: rgb(0, 255, 242);
}
a, button {
    text-decoration: none;
}
p {
    text-align: justify;
}

.text-justify {
    text-align: justify;
}

.typed{
	animation: typing 3s infinite;
}

@keyframes typing{
	0% { width:0% }
  100% { width:100% }
}

.input-field-container{
    margin-top: 60px
}

.card-custom {
    background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
    box-Shadow: rgba(0, 0, 0, 0.4) 0px 4px 12px;
    border-radius: 20px;
    height: 500px;
    overflow-x: hidden;
}
.card-custom:hover {
    opacity: 0.9;
    transform: translateY(5px)
}

.custom-modal{
    background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
}

.error {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 0, 0, 0.781);
    color: white;
    padding: 10px;
    border-radius: 3px;
    width: fit-content;
}
.book-found {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 10px;
    border-radius: 3px;
    width: fit-content;
}

.spinner-custom{
    color: rgb(87, 244, 255);
    display: none;
}

/* Scrollbar starts */

.country::-webkit-scrollbar {
    display: none;
  }
#country-details::-webkit-scrollbar {
    display: none;
  }

::-webkit-scrollbar {
    width: 20px;
}

.btn-grad {background-color: #00fff2ab}
.btn-grad {
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 10px;
    height: 50px;
    font-size: 16px;
    outline: none;
    border: none;
    cursor: pointer;
    box-Shadow: rgba(0, 0, 0, 0.4) 0px 4px 12px
}
.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    background-color: #10be8ad2;
    color: #fff;
    text-decoration: none;
}
input:focus, textarea:focus {
    outline: none;
}
textarea::-webkit-scrollbar{
    display: none;
}

footer{
    background-color: black;
    color: rgb(0, 255, 242);
    margin-top: 60%
}

/* width */
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(128, 128, 128); 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
      background-image: linear-gradient(rgb(243, 82, 61) 0%, rgb(105, 53, 188) 100%);
      border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
      background: rgb(76, 146, 250); 
  }
  
  /* Scrollbar ends */