.card {

    background: #fff;

    border: 1px solid #ccd0d4;

    box-shadow: 0 1px 1px rgba(0,0,0,.04);

    border-radius: 5px;

}

.form-table th {

    width: 200px;

}

#progress-bar, #article-progress-bar {

    transition: width 0.5s ease-in-out;

}

/* WooCommerce required disabled sections */

.woocommerce-required.disabled {

    opacity: 0.6;

    pointer-events: none;

    background: #f8f9fa !important;

    border: 1px solid #dee2e6 !important;

    position: relative;

}



.woocommerce-required.disabled::before {

    content: "WooCommerce Required";

    position: absolute;

    top: 10px;

    right: 15px;

    background: #ffc107;

    color: #856404;

    padding: 4px 8px;

    border-radius: 3px;

    font-size: 11px;

    font-weight: bold;

}

.woocommerce-required.disabled h2 {

    color: #6c757d !important;

}

.woocommerce-required.disabled button {

    cursor: not-allowed !important;

    opacity: 0.5 !important;

}

.woocommerce-warning {

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% { opacity: 1; }

    50% { opacity: 0.8; }

    100% { opacity: 1; }

}