@import "Common.css";

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 30px;
}

.logo-img {
    height: 100%;
    flex: 1;
}

.logo-img img {
    height: 100%;;
}

.logo-img:last-child {
    text-align: right;
}

.nav-items {
    background-color: #ffffff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-item {
    float: left;
    display: flex;
    color: black;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 58px;
    font-weight: bold;
    border-radius: 10px;
    min-width: 100px;
}

.nav-item-link {
}

.nav-welcome-item {
    line-height: 58px;
    float: right;
    font-size: 16pt;
}

.nav-item-link:hover {
    background-color: var(--tsd-blue);
    color: var(--text-color-alt);
    font-weight: bold;
}

.nav-link {
    text-decoration: none;
    width: 100%;
    height: 30px;
    padding: 14px 16px;
    line-height: 30px;
    text-align: center;
    color: inherit;
}

.nav-logo {
    float: left;
    display: block;
    text-align: center;
    text-decoration: none;
    height: 58px;
    margin-right: 10px;
}

.content {
    margin-top: 10px;
}
