
/* Estilo base para as abas */
#tabHorz {
    padding-left:16px!important;
    font-family: Arial, sans-serif;
    background-color: #fff !important;
    display: inline-block;
}

#tabHorz ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 2px solid #ccc;
}

#tabHorz li {
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ccc;
}

#tabHorz li:last-child {
    border-right: none; /* Remove border da última aba */
}

#tabHorz .tabLeft, #tabHorz .tabRight {
    width: 10px;
    height: 10px;
    background-color: transparent;
}

#tabHorz .tabCenter {
    margin: 5px !important;
}

#tabHorz .tabCenter a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: bold;
}

/* Estado da aba ativa */
#tabHorz li.currentTab {
    background-color: #123141;
    color: white;
}

#tabHorz li.currentTab .tabCenter a {
    color: white;
}

/* Efeito ao passar o mouse sobre as abas */
#tabHorz li:hover {
    background-color: #f1f1f1;
}

#tabHorz li:hover .tabCenter a {
    color: #007bff;
}