td.editable { background: #fffbe5 !important; border: 1px solid #ccc !important; padding: 4px; }
td { border: 1px solid #ccc; padding: 4px; }
.variation-row { background: #eef; }
#wpbody {
    padding-right: 20px !important;
}
.variation-row {
    background-color: #f4f8ff !important;
}
.stock-toggle {
    cursor: pointer;
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: #ccc;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transition: background 0.3s;
}
.stock-toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    left: 2px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.3s;
}
.stock-toggle.active {
    background: #28a745;
}
.stock-toggle.active::after {
    left: 20px;
}