.top-bar {
    background-color: #002e58;
    color: white;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 5px;
    position: relative;
}

.logo {
    height: 100px;
    margin-right: 10px;
}

.title {
    font-size: 30px;
}

#logoutButton {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0.3;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

#logoutButton i {
    margin-right: 5px;
    font-size: 12px;
}

#logoutButton:hover {
    opacity: 1;
}
