/* Dashboard Card Wrapper Fix */
.scx-card {
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.scx-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #1e293b;
}

/* Form Fields */
.scx-field-group {
    margin-bottom: 15px;
}

.scx-field-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #334155;
}

.scx-field-group input[type="text"],
.scx-field-group input[type="number"],
.scx-field-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 14px;
}

/* Product Gallery Alignments */
.scx-gallery-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.scx-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.scx-thumb-item {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}

.scx-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Submit Button Layout Fix */
.scx-submit-wrap {
    margin-top: 25px;
}

.scx-submit-btn {
    width: 100%;
    background-color: #2271b1 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.scx-submit-btn:hover {
    background-color: #135e96 !important;
}

/* Table Design Cleanup */
.scx-products-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.scx-products-table th,
.scx-products-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.scx-products-table th {
    background-color: #f8fafc;
    color: #475569;
    font-size: 13px;
    text-transform: uppercase;
}