﻿#tabcontainer {
}
#tabcontainer #tabs {
    margin: 10px 0px;
    margin-top: 15px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
#tabcontainer #tabs a {
    padding: 5px 10px;
    /*border: 1px solid #ccc;*/
    border-bottom: 5px solid #666;
    border-radius: 4px;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    background: #fff;
    box-shadow: 0 8px 24px rgb(25 25 25 / 15%);
    margin: 0px 5px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    color: #333;
    text-decoration: none;
}
#tabcontainer #tabs a span {
    text-decoration: none !important;
}
#tabcontainer #tabs a:hover {
    border-bottom-color: rgb(244 36 78 / 60%);
    color: #F4244E;
    text-decoration: none;
}
#tabcontainer #tabs a.selected {
    border-bottom-color: #F4244E;
    color: #F4244E;
}
#tabcontainer #tabs a span {
    height: 25px;
    display: inline-block;
    float: left;
}
#tabcontainer #tabs a span.material-symbols-outlined {
    margin-right: 6px;
}

@media only screen and (max-width : 450px) {
    #tabcontainer #tabs a {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }
    #tabcontainer #tabs a span {
        display: none;
    }
    #tabcontainer #tabs a span.material-symbols-outlined {
        display: inline-block;
    }
}
