﻿.bool-badge {
    color: transparent; /* esconde true/false, mas mantém no textContent */
    position: relative;
}

    .bool-badge::before {
        content: attr(data-label); /* mostra Sim/Não */
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-badge-color, #fff); /* Bootstrap badge text color (fallback branco) */
        pointer-events: none;
    }

.bordered-tab-contents > .tab-content > .tab-pane {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0px 0px 5px 5px;
    padding: 10px;
}

.bordered-tab-contents > .nav-tabs {
    margin-bottom: 0;
}
