/* Modern Checkbox Design */
.modern-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #F6B3A6;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    top: 2px;
    transition: all 0.3s ease;
}

.modern-checkbox input[type="checkbox"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.modern-checkbox input[type="checkbox"]:checked::after {
    content: '\2713'; /* Checkmark symbol */
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Highlight selected row */
.pcode_table .table-row-selected {
    background-color: #F6B3A6 !important;
}

/* Adjust column width */
.pcode_table .td-checkbox {
    width: 1%;
    white-space: nowrap; /* Prevents wrapping */
}