/*TOP BAR*/
#topBar {
    width: 100%;
    border-width: 0px 0px 2px 0px;
    border-style: solid;
    margin-bottom: 30px;
    padding: 0px;
    justify-content: center;
    align-items: center;
    display: flex;
    /*background-color:rgb(48, 49, 53);*/
    background-color: var(--contentBackgroundColor);
    /*border-color: transparent;*/
    /*border-image: linear-gradient(to right, rgba(255,255,255,0), white 20%, white 80%, rgba(255,255,255,0)) 1;*/
}

#topBarContent {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: var(--horizontalPagePadding);
    padding-right: var(--horizontalPagePadding);
}

#topBarLeftContent {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#topBarLeftContent img {
    height: 64px;
    margin-right: 16px;
}

#topBarLeftTexts {
    display: flex;
    flex-direction: column;
}

#topBarRightContent {
    margin: 12px 0px 12px 0px;
    flex: none;
    text-align: left;
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: center;
    gap: 4px 8px; /*Space between rows, space between columns*/
}

#topBarRightContent img {
    height: 20px;
    width: 20px;
    margin-left: 20px;
}

#topBar p {
    margin: 0px;
}

#topBar a {
    text-decoration: none;
}

#topBar a:hover {
    text-decoration: underline;
}

#topBar h1 {
    margin: 10px 0px 0px 0px;
    padding: 0px;
}

#topBar h2 {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    font-style: italic;
    font-size: 20px;
}

#buttonIndex {
    height: 60px;
    width: 60px;
    flex: none;
    border-radius: 20px;
    border-width: 0px;
    background-color:rgb(231, 232, 238);
    transition: background-color ease 0.2s;
    transition: transform ease 0.2s;
    padding: 6px;
}

#buttonIndex:hover {
    cursor: pointer;
    background-color:rgb(182, 183, 188);
    transform: scale(1.15);
}

#buttonIndex img {
    height: 48px;
    width: 48px;
}

/*BOTTOM BAR*/
#bottomBar {
    height: var(--bottomBarHeight);
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: rgb(231, 232, 238);
    border-radius: 10px 10px 0px 0px;
    justify-content: center;
    align-items: center;
    display: flex;
    color:black;
    gap:20px;
}

.logo {
    height: 75%;
    justify-content: center;
    align-items: center;
    display:flex;
    flex-direction:row;
    gap:6px;
}

.logo p {
    color: var(--pageBackgroundColor);
    /*font-weight:bold;*/
}

.logo img {
    height: 100%;
    transition: transform 0.2s ease;
}

.logo img:hover {
    transform: scale(1.15);
    
}