.app-bar {
    display: flex;
    height: 6.5vh;
}

.app-bar-content-container {
    position: relative;
    left: -31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-bar-title {
    margin-left: 20px;
    margin-bottom: 0px;
}

.app-bar-hamburger {
    color: white;
    position: relative;
}

.app-bar-tenant-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .app-bar-content-container {
        left: -16px;
        flex: 0 0 auto;
    }

    .app-bar-brand-logo {
        display: none;
    }

    .app-bar-tenant-name {
        flex: 1 1 auto;
        margin-right: 4px !important;
        font-size: 1rem;
    }
}
