#adminmenu .toplevel_page_dynamic-mockups div.wp-menu-image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#adminmenu .toplevel_page_dynamic-mockups div.wp-menu-image img {
    width: 20px;
    height: 20px;
    position: relative;
    margin: -2px; /* Center the icon vertically */
}

/*
STATUS INDICATOR
 */
.dm-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.dm-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dm-status-connected {
    background: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
}

.dm-status-disconnected {
    background: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.3);
}

.dm-status-indicator span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/*
ALERT STYLING
 */
.dm-alert {
    padding: 12px 16px;
    margin: 15px 0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

.dm-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.dm-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.dm-alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/*
SUPPORT PAGE STYLING (matching Settings page)
 */
.dm-settings-container {
    max-width: 1200px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dm-header {
    background: linear-gradient(135deg, #0087F7 0%, #0066CC 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dm-header-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.dm-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.dm-header-content {
    flex: 1;
}

.dm-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.dm-header p {
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.dm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dm-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

.dm-card h2 {
    margin: 0 0 1rem 0;
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 600;
}

.dm-form-group {
    margin-bottom: 1.5rem;
}

.dm-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.dm-form-group input[type="text"],
.dm-form-group input[type="email"],
.dm-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

/* Override for checkbox inputs */
.dm-form-group input[type="checkbox"] {
    width: 20px !important;
    padding: 0 !important;
}

.dm-form-group input:focus,
.dm-form-group textarea:focus {
    outline: none;
    border-color: #0087F7;
    box-shadow: 0 0 0 3px rgba(0, 135, 247, 0.1);
}

.dm-form-group textarea {
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dm-button {
    background: linear-gradient(135deg, #0087F7 0%, #0066CC 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.dm-button:hover {
    transform: translateY(-1px);
}

.dm-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .dm-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .dm-header h1 {
        font-size: 2rem;
    }
    
    .dm-header-logo {
        width: 50px;
        height: 50px;
    }
}

.dm-coming-soon-features {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.dm-coming-soon-features h3 {
    margin: 0 0 0.5rem 0;
    color: #1a202c;
    font-size: 1rem;
    font-weight: 600;
}

.dm-coming-soon-features ul {
    margin: 0;
    padding-left: 1.5rem;
}

.dm-coming-soon-features li {
    color: #374151;
    margin-bottom: 0.25rem;
}

/*
TEMPLATE LIST STYLING
 */

.dm-template-list-section {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #e1eeff;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 135, 247, 0.05);
}

.dm-template-list-section h4 {
    color: #0087F7 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 15px 0 !important;
    padding: 0 0 8px 0 !important;
    border-bottom: 1px solid #e1eeff !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.dm-templates-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)) !important;
    gap: 8px !important;
    max-width: 70% !important;
}

.dm-template-item {
    background: white !important;
    border: 1px solid #e1eeff !important;
    border-radius: 6px !important;
    padding: 6px !important;
    text-align: center !important;
}

.dm-template-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}

.dm-template-name {
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 14px !important;
    flex: 1 !important;
    margin-right: 10px !important;
}

.dm-template-status {
    padding: 2px 8px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: white !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    flex-shrink: 0 !important;
}

.dm-template-description {
    font-size: 12px !important;
    color: #666 !important;
    margin-bottom: 8px !important;
    font-style: italic !important;
    line-height: 1.4 !important;
}

.dm-template-uuid {
    font-size: 11px !important;
    color: #999 !important;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
    word-break: break-all !important;
    background: #f8f9fa !important;
    padding: 4px 6px !important;
    border-radius: 4px !important;
    border: 1px solid #e9ecef !important;
}

/* Template thumbnail styles */
.dm-template-thumbnail img {
    width: 100% !important;
    height: auto !important;
    border-radius: 3px !important;
    border: 1px solid #e1eeff !important;
}

.dm-template-thumbnail-placeholder {
    width: 100% !important;
    height: 80px !important;
    background: linear-gradient(135deg, #f8fbff 0%, #e1eeff 100%) !important;
    border-radius: 3px !important;
    border: 1px solid #e1eeff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 5px !important;
}

/* Responsive adjustments for template grid */
@media (max-width: 768px) {
    .dm-templates-grid {
        grid-template-columns: 1fr !important;
    }
    
    .dm-template-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .dm-template-name {
        margin-right: 0 !important;
    }
}

/*
TAB NAVIGATION STYLING
 */

.dm-tab-navigation {
    display: flex !important;
    border-bottom: 1px solid #ddd !important;
    margin-bottom: 20px !important;
}

.dm-tab-button {
    padding: 12px 20px !important;
    border: none !important;
    cursor: pointer !important;
    margin-right: 2px !important;
    border-radius: 4px 4px 0 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.dm-tab-button.active {
    background: #0087F7 !important;
    color: white !important;
}

.dm-tab-button:not(.active) {
    background: #f1f1f1 !important;
    color: #333 !important;
}

.dm-tab-button:not(.active):hover {
    background: #e8e8e8 !important;
    color: #0087F7 !important;
}

.dm-tab-content {
    /* No default display rule - will be controlled by inline styles */
}

/*
TWO-COLUMN INPUTS LAYOUT
 */

.dm-inputs-two-column {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    align-items: stretch !important; /* Stretch items to equal height */
}

.dm-inputs-column {
    min-width: 0 !important; /* Allows content to shrink properly */
    display: flex !important;
    flex-direction: column !important;
    background: rgba(248, 251, 255, 0.3) !important; /* Subtle background to show column boundaries */
    border-radius: 8px !important;
    padding: 15px !important;
    border: 1px solid rgba(225, 238, 255, 0.5) !important;
}

.dm-inputs-column h5 {
    margin: 0 0 15px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 8px !important;
}

.dm-artworks-column h5 {
    color: #2196F3 !important;
}

.dm-colors-column h5 {
    color: #FF9800 !important;
}

.dm-inputs-full-width h5 {
    color: #4CAF50 !important;
    margin: 0 0 15px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 8px !important;
}

/* Responsive design for smaller screens */
@media (max-width: 1024px) {
    .dm-inputs-two-column {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .dm-inputs-column {
        padding: 12px !important;
    }
}

@media (max-width: 768px) {
    .dm-inputs-two-column {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .dm-inputs-column {
        padding: 10px !important;
    }
    
    .dm-input-field-enhanced {
        padding: 10px !important;
        margin-bottom: 12px !important;
    }
    
    .dm-input-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }
    
    .dm-color-input {
        flex-wrap: wrap !important;
        gap: 5px !important;
    }
    
    .dm-artwork-controls {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 5px !important;
    }
    
    .dm-mini-preview {
        align-self: center !important;
        margin-top: 5px !important;
    }
}

/*
ARTWORK INPUT STYLING
 */

.dm-artwork-controls {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.dm-mini-preview {
    width: 30px !important;
    height: 30px !important;
    border-radius: 4px !important;
    border: 2px solid #2196F3 !important; /* More visible border for debugging */
    object-fit: cover !important;
    flex-shrink: 0 !important;
    background: #f9f9f9 !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    display: inline-block !important;
}

.dm-mini-preview-hidden {
    display: none !important;
}

.dm-mini-preview-visible {
    display: inline-block !important;
}

/*
WOOCOMMERCE PRODUCT TAB ICON
 */

/* Hide the default WooCommerce tab icon for Dynamic Mockups tab */
.dynamic_mockups_tab a:before,
.woocommerce_options .wc-tabs li.dynamic_mockups_tab a:before,
#woocommerce-product-data .wc-tabs li.dynamic_mockups_tab a:before {
    display: none !important;
}

/*
PRODUCT PERSONALIZATION PAGE - TWO COLUMN LAYOUT
 */

/* Two-column layout for personalization page */
.dm-personalization-two-column {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    margin-bottom: 2rem !important;
}

/* Responsive design for smaller screens */
@media (max-width: 1200px) {
    .dm-personalization-two-column {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/*
KNOWLEDGE BASE PAGE
 */

.videos-container {
    display: flex;
    flex-wrap: wrap;
}

.video-item {
    width: 48%;
    margin: 1%;
}

.video-item h2 {
    margin-top: 0;
}

.video-item iframe {
    width: 100%;
    height: 400px;
}

/*
DYNAMIC MOCKUPS PRODUCT SELECTOR
 */

/* Add padding to Dynamic Mockups tab content */
#dynamic_mockups_product_data {
    padding: 20px;
}

/* Add padding to Variable Product Dynamic Mockups sections */
.form-row[data-loop] h4 {
    margin-top: 0;
}

.form-row[data-loop] {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    background: #fff;
}

.dm-product-selector {
    margin: 15px 0;
}

.dm-product-selector label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.dm-product-selector select {
    margin-bottom: 10px;
}

.dm-selected-product-info {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

.dm-selected-product-info h4 {
    margin-top: 0;
    color: #333;
}

.dm-selected-product-info img {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dm-selected-product-info p {
    margin: 5px 0;
}

.dm-template-group-selector {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

.dm-template-group-selector h4 {
    margin-top: 0;
    color: #333;
}

.dm-template-group-selector label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.dm-template-group-selector select {
    margin-bottom: 10px;
}

.dm-inputs-section {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.dm-inputs-section h4 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.dm-input-field {
    margin-bottom: 15px;
}

.dm-input-field label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.dm-artwork-input {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.dm-media-preview img {
    border: 1px solid #ddd;
    border-radius: 4px;
    max-width: 150px;
    height: auto;
}

.dm-select-media, .dm-remove-media {
    margin: 0 !important;
}

input[type="color"] {
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
}

.dm-generate-section {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.dm-generate-render {
    font-size: 14px !important;
    padding: 8px 16px !important;
}

.dm-generate-status {
    font-weight: 600;
    vertical-align: middle;
}

/* Enhanced Input Field Styling */
.dm-input-field-enhanced {
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    padding: 15px !important;
    background: #fafafa !important;
    margin-bottom: 20px !important;
}

.dm-input-field-enhanced:hover {
    border-color: #d0d0d0 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.dm-input-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}

.dm-input-name {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #333 !important;
}

.dm-input-type-badge {
    border-radius: 8px !important;
    font-size: 8px !important;
    font-weight: 500 !important;
    padding: 1px 4px !important;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dm-input-description {
    font-size: 12px !important;
    color: #666 !important;
    margin-bottom: 10px !important;
    font-style: italic;
}

.dm-input-controls {
    margin-top: 10px !important;
}

.dm-color-input {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.dm-color-input input[type="text"] {
    width: 100px !important;
    padding: 5px !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
}

.dm-color-input input[type="color"] {
    width: 40px !important;
    height: 32px !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
    cursor: pointer !important;
}

.dm-color-input span {
    font-size: 12px !important;
    color: #666 !important;
}

.dm-artwork-input {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.dm-select-media {
    background: #2196F3 !important;
    color: white !important;
    border-color: #2196F3 !important;
}

.dm-remove-media {
    background: #f44336 !important;
    color: white !important;
    border-color: #f44336 !important;
}

.dm-media-preview {
    margin-top: 10px !important;
    width: 100% !important;
}

/* Text Input Styling */
.dm-input-controls input[type="text"] {
    width: 100% !important;
    padding: 8px !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    transition: border-color 0.2s ease;
}

.dm-input-controls input[type="text"]:focus {
    border-color: #2196F3 !important;
    outline: none !important;
    box-shadow: 0 0 0 1px rgba(33, 150, 243, 0.2) !important;
}

/*
MODERN DYNAMIC MOCKUPS TAB STYLING
 */

/* Tab Panel Container */
#dynamic_mockups_product_data .options_group {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f8ff 100%);
    border: 1px solid #e1eeff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 135, 247, 0.08);
}

/* Main Section Headers */
#dynamic_mockups_product_data h3 {
    color: #0087F7;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
    border-bottom: 2px solid #0087F7;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Section Containers */
.dm-product-selector-container,
.dm-personalization-container {
    background: white;
    border: 1px solid #e1eeff;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 135, 247, 0.05);
    transition: all 0.3s ease;
}

.dm-product-selector-container:hover,
.dm-personalization-container:hover {
    box-shadow: 0 4px 16px rgba(0, 135, 247, 0.1);
    transform: translateY(-2px);
}

/* Section Headers */
.dm-product-selector-container h4,
.dm-personalization-container h4 {
    color: #0087F7;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e1eeff;
}

/* Form Fields */
.dm-product-selector label,
.dm-personalization-container label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.dm-product-selector select,
.dm-personalization-container select {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 2px solid #e1eeff;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.dm-product-selector select:focus,
.dm-personalization-container select:focus {
    outline: none;
    border-color: #0087F7;
    box-shadow: 0 0 0 3px rgba(0, 135, 247, 0.1);
}

/* Checkbox Styling */
.dm-personalization-container input[type="checkbox"],
.dm-form-group input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin-right: 12px !important;
    accent-color: #0087F7 !important;
    cursor: pointer !important;
    max-width: 20px !important;
    flex-shrink: 0 !important;
}

/* Checkbox Label Layout */
.dm-form-group label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    max-width: none !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    cursor: pointer !important;
}

/* Description Text */
.dm-product-selector .description,
.dm-personalization-container .description {
    color: #666;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.4;
    font-style: italic;
}

/* Flex Container for Product Info */
.dm-flex-container {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    align-items: flex-start;
}

.dm-selected-product-info {
    flex: 1;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #e1eeff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 135, 247, 0.05);
}

.dm-selected-product-info h4 {
    color: #0087F7;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.dm-selected-product-info img {
    max-width: 180px;
    height: auto;
    border: 2px solid #e1eeff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 135, 247, 0.1);
}

.dm-selected-product-info p {
    margin: 8px 0;
    color: #555;
    font-size: 13px;
}

.dm-selected-product-info p strong {
    color: #333;
    font-weight: 600;
}

/* Template Group Selector Container */
.dm-template-group-selector-container {
    background: white;
    border: 1px solid #e1eeff;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 135, 247, 0.05);
    transition: all 0.3s ease;
}

.dm-template-group-selector-container:hover {
    box-shadow: 0 4px 16px rgba(0, 135, 247, 0.1);
    transform: translateY(-2px);
}

.dm-template-group-selector-container h4 {
    color: #0087F7;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e1eeff;
}

/* Template Group Selector */
.dm-template-group-selector {
    flex: 1;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #e1eeff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 135, 247, 0.05);
}

.dm-template-group-selector h4 {
    color: #0087F7;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.dm-template-group-selector select {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 2px solid #e1eeff;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.dm-template-group-selector select:focus {
    outline: none;
    border-color: #0087F7;
    box-shadow: 0 0 0 3px rgba(0, 135, 247, 0.1);
}

/* Variable Products Styling */
.woocommerce_variation .form-row h4 {
    color: #0087F7;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e1eeff;
}

.woocommerce_variation .dm-personalization-container {
    background: white;
    border: 1px solid #e1eeff;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 135, 247, 0.05);
}

/*
KNOWLEDGE BASE PAGE
 */