/* navbar.css */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.navbar-account {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.navbar-account:hover {
    background-color: #0056b3;
}

.logo{
    width:200px;
    height:200px;
    border-radius:50%;
    background-color:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.logo img{
    width:80%;
    height:auto;
}