@font-face {
    font-family: 'Overpass-regular';
    src: url('../Icon/overpass/Overpass_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Overpass-bold';
    src: url('../Icon/overpass/Overpass_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Overpass-light';
    src: url('../Icon/overpass/Overpass_Light.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* page background */
body{
    background-color: white;
}

.navbar{
    max-height: 150px;
    background-color: #2C9585;
    font-family: 'Overpass-regular', sans-serif;
}

.nav-link {
    color: #D3FFEE;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover{
    color: black;
}

.nav-link.active{
    color: black !important;
}

.navbar-left {
    max-width: 100px;
    margin-left: 50px;
}

.navbar-center{
    display: flex;
    gap: 40px;
    margin-left: -100px;
}

.logo {
    width: 100px;
    height: auto;
    margin: 10px 10px;
}

.booksage-text {
    position: absolute;
    top: 50px;
    margin-left: 12px;
    font-size: 20px;
    color: #D3FFEE;
}

.navbar-right {
    display: flex;
    margin-right: 50px;
}

.search-container{
    display: flex;
    align-items: center;
    width: 350px;
    height: 60px;
}

.search-container .search-button {
    position: relative;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-icon{
    width: 30px;
    height: 30px;
}

.search-container input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    background-color: transparent;
    border: 2px solid #D3FFEE;
    border-radius: 25px;
    color: #D3FFEE;
    font-family: 'Overpass-light', sans-serif;
    font-size: 16px;
}

.search-container input::placeholder {
    color: #D3FFEE;
}

.welcome-message{
    font-size: 30px;
    margin-top: 10px;
}

.welcome-logout{
    margin-left: 60px;
    text-align: right;
    color: #D3FFEE;
}





