/* qo-metabox-styles.css */

/* Table structure for the product details metabox */
.qo-product-details-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.qo-product-details-table th {
    text-align: left;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    color: #333;
    vertical-align: middle;
}

.qo-product-details-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

.qo-product-details-table input[type="number"],
.qo-product-details-table input[type="date"] {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.qo-product-details-table input[type="number"]:focus,
.qo-product-details-table input[type="date"]:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
    outline: none;
}