.tag-toggle label {
    border-width: 2px;
    border-color: #fe5e13;
    border-radius: 0 !important;
    transition: none !important;
    background-color: #545454;
    color: #8a8a8a;
}
.tag-toggle:hover label {
    color: #8a8a8a;
}
.tag-toggle .btn-check:checked + label {
    background-color: #fe5e13;
    color: #fff;
    border-color: #fe5e13;
    box-shadow: none !important;
    transform: none !important;
}
/* Optional: soft rounded corners for the top edges */
.tag-toggle .col-6:first-child label {
    border-top-left-radius: 0.75rem !important;
}
.tag-toggle .col-6:last-child label {
    border-top-right-radius: 0.75rem !important;
}
/* Responsive adjustment */
@media (max-width: 576px) {
    .tag-toggle .col-6 label {
        font-size: 0.9rem;
        padding: 0.6rem 0.5rem;
    }
}
