Settings page container
.woocommerce table.form-table {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin: 20px 0;
    padding: 20px;
}

/* Section titles */
.woocommerce h2 {
    color: #23282d;
    font-size: 1.5em;
    font-weight: 600;
    margin: 1.5em 0 1em;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
}

/* Form fields */
.woocommerce table.form-table input[type="text"],
.woocommerce table.form-table input[type="number"],
.woocommerce table.form-table textarea:not(#pmatc_ajax_cart_shortcode_generator),
.woocommerce table.form-table select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    width: 400px;
    max-width: 100%;
    transition: border-color 0.3s ease;
    min-height: fit-content;
}

.woocommerce table.form-table input[type="text"]:focus,
.woocommerce table.form-table input[type="number"]:focus,
.woocommerce table.form-table textarea:not(#pmatc_ajax_cart_shortcode_generator):focus,
.woocommerce table.form-table select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
    outline: none;
}

/* Color picker */
.wp-picker-container {
    position: relative;
    display: inline-block;
}

.wp-picker-container .wp-color-result {
    border-radius: 4px;
    height: 30px;
    margin: 0 6px 6px 0;
}

.wp-picker-container .wp-color-result-text {
    background: #f3f3f3;
    border-radius: 0 3px 3px 0;
    line-height: 28px;
}

/* Multiselect */
.chosen-container-multi .chosen-choices {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px;
    background-image: none;
}

.chosen-container-multi .chosen-choices li.search-choice {
    background: #0073aa;
    border: none;
    border-radius: 3px;
    color: #fff;
    padding: 5px 25px 5px 8px;
}

/* Shortcode field */
/* #pmatc_ajax_cart_shortcode_generator {
    background: #f8f9fa;
    font-family: monospace;
    color: #333;
    cursor: text;
} */

/* Description text */
.woocommerce table.form-table .description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Save button */
.woocommerce-save-button {
    background: #0073aa !important;
    border-color: #006291 !important;
    color: #fff !important;
    padding: 8px 20px !important;
    height: auto !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.woocommerce-save-button:hover {
    background: #006291 !important;
    border-color: #004b6e !important;
    transform: translateY(-1px);
}

/* Section spacing */
.woocommerce table.form-table th {
    padding: 20px 10px 20px 0;
}

.woocommerce table.form-table td {
    padding: 15px 10px;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .woocommerce table.form-table input[type="text"],
    .woocommerce table.form-table input[type="number"],
    .woocommerce table.form-table textarea:not(#pmatc_ajax_cart_custom_css),
    .woocommerce table.form-table select {
        width: 100%;
    }
    
    .woocommerce table.form-table th {
        padding: 15px 0 5px;
    }
    
    .woocommerce table.form-table td {
        padding: 5px 0 15px;
    }
}
