/*** Dropdown Toggles ***/

.dropdown-toggle.toggle-hide-chevron::after {
    display: inline;
}

@media only screen and (min-width: 992px) {
    .dropdown-toggle.toggle-hide-chevron::after {
        display: none;
    }
}

/*** Tables ***/

.d-table {
    display: table;
    width: 100%;
    /* Make the table full width of its container */
}

.d-table-row {
    display: table-row;
}

.d-table-cell {
    display: table-cell;
    width: 33.33%;
    /* Divide the table into three equal-width columns */
    border: 1px solid #ccc;
    /* Optional: Add borders for visualization */
    padding: 10px;
    /* Optional: Add padding for spacing */
}