body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}
.wrapper{
    width: 80%;
    margin:10px auto;
}

.image-table{
    max-width: 40px ;
    height: auto ;
}

.text {
    display: block;
    width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.tabs .tab a{
    color:#f57c00;
} /*Black color to the text*/

.tabs .tab a:focus, .tabs .tab a:focus.active {
    background-color: transparent;
    outline: none;
}

.tabs .tab a:hover {
    background-color: transparent;
    color:#f57c00;
} /*Text color on hover*/

.tabs .tab a.active {
    background-color: transparent;
    color:#f57c00;
} /*Background and text color when a tab is active*/

.tabs .indicator {
    background-color:#f57c00;
} /*Color of underline*/


.logo {
    display: inline-block;
    height: 100%;
}

.logo>img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
