.BottomContent {
    background-color: #231F20;
    overflow: hidden;
}

/* Navigation links */
.BottomContent label {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 8px 20px;
    text-decoration: none;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
    transition: width 0.3s ease;
}

/* Underline animation */
.BottomContent label::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0000ff;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.BottomContent label:hover::after {
    width: 100%;
    color: #231F20;
}

/* Change color on hover */
.BottomContent label.active {
    color: #87cefa;
}

.BottomContent img {
    height: 3rem;
    width: 3rem;
    cursor: pointer;
}

#UserName {
    margin: 0 0.5rem 0 1rem;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem;
    width: 10rem;
    height: 3rem;
    align-items: start;
    overflow: auto;
}

#UserName label {
    cursor: pointer;
    float: left;
    display: block;
    color: #b5b5b5;
    text-align: center;
    padding: 0 5px 0 5px;
    text-decoration: none;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

@media (max-width: 767px) {
    .BottomContent {
        flex-direction: column;
        align-items: center;
    }
}