.btn-check + .btn {
    background-color: #e5e6e7!important;
    border: 2px solid #e5e6e7!important;
    border-radius: 6px;
    color: #000!important;
    position: relative;
    padding: 0.4rem 1rem;
    transition: all 0.3s ease;
    font-size:13px;
    font-weight:600;
}

/* Checked state styles */
.btn-check:checked + .btn {
    background-color: white;
    border: 2px solid #ffd933!important; /* Outline color */
    color: #000!important; /* Text color */
}

/* Tick mark when checked */
.btn-check:checked + .btn::after {
    content: "✔";
    font-size: 0.8rem;
    background-color: #ffd933;
    color: #000!important;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -2px;
    right: -2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Optional hover styles */
.btn:hover {
    filter: brightness(0.9);
}