
    .custom-form-container {
        max-width: 1200px; /* Increased max-width for two columns */
        margin: 5px auto;
        padding: 30px;
        background-color: #F2ECE9;
        border-radius: 12px;
        font-family: 'Cormorant Garamond';
        display: flex; /* Added flexbox for two columns */
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        gap: 30px; /* Space between columns */
        align-items: center;
        justify-content: center;
    }
    @media (max-width: 768px) {
        .custom-form-container {
            flex-direction: column; /* Stack columns on small screens */
            max-width: 90%; /* Adjust width for mobile */
            padding: 20px;
        }
    }
    .custom-form-left,
    .custom-form-right {
        flex: 1; /* Distribute space equally */
        min-width: 300px; /* Minimum width before wrapping */
    }
    @media (max-width: 768px) {
        .custom-form-left,
        .custom-form-right {
            min-width: unset; /* Remove min-width on small screens */
            width: 100%; /* Full width on small screens */
        }
    }
    
    #inner-wrap{
        background-color: #F2ECE9;
    }
    
    .custom-form-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        width: 100%; /* Ensure tabs span full width */
    }
    .custom-form-tab {
        padding: 15px 25px;
        cursor: pointer;
        font-weight: 600;
        color: #555;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
    }
    .custom-form-tab.active {
        color: #6F4E37; /* Earthy brown */
        border-bottom-color: #6F4E37;
    }
    .custom-form-title {
        text-align: center;
        margin-bottom: 25px;
        font-size: 1.5em;
        color: #333;
        width: 100%; /* Ensure title spans full width */
    }
   .custom-form-group {
    margin-bottom: 20px;
    width: 100%;
    max-width: 450px;
}

/* Optional media query for finer control on smaller screens */
@media (max-width: 576px) {
    .custom-form-group {
        max-width: 100%;
    }
}

    .custom-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 700;
        color: #6B4B3E;
        
    }
    .custom-form-group input[type='email'],
    .custom-form-group input[type='password'],
    .custom-form-group input[type='text'],
    .custom-form-group textarea,
    .custom-form-group select { /* Added select style */
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1em;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
    }
    .custom-form-group input[type='email']:focus,
    .custom-form-group input[type='password']:focus,
    .custom-form-group input[type='text']:focus,
    .custom-form-group textarea:focus,
    .custom-form-group select:focus { /* Added select focus style */
        border-color: #6F4E37;
        outline: none;
    }
    .custom-form-button {
        width: 100%;
        padding: 15px 20px;
        background-color: #8B4513; /* Saddle Brown */
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .custom-form-button:hover {
        background-color: #6F4E37; /* Darker earthy brown */
        transform: translateY(-2px);
    }
    .custom-form-links {
        text-align: center;
        margin-top: 20px;
        font-size: 0.95em;
        width: 100%; /* Ensure links span full width */
    }
    .custom-form-links a {
        color: #8B4513;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .custom-form-links a:hover {
        color: #6F4E37;
        text-decoration: underline;
    }
    .custom-form-message {
        margin-top: 20px;
        padding: 12px;
        border-radius: 8px;
        text-align: center;
        font-weight: 500;
        width: 100%; /* Ensure messages span full width */
    }
    .custom-form-message.success {
        background-color: #e6ffe6;
        color: #339933;
        border: 1px solid #339933;
    }
    .custom-form-message.error {
        background-color: #ffe6e6;
        color: #cc0000;
        border: 1px solid #cc0000;
    }
    .product-enquiry-details {
        background-color: #f9f9f9;
        border: 1px dashed #ddd;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .product-enquiry-details p {
        margin: 5px 0;
    }
    .product-enquiry-details img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    /* Add styling for processing button */
    .enquire-now-button.processing-button {
        opacity: 0.7;
        cursor: not-allowed;
    }

    /* User Dashboard Styling */
    .user-dashboard-section {
        max-width: 800px; /* Added max-width for a more contained look */
        margin: 0 auto; /* Center it within the custom-form-container */
        padding: 20px;
        box-sizing: border-box;
    }
    .user-dashboard-section h3 {
        text-align: center;
        margin-bottom: 25px;
        font-size: 1.8em;
        color: #333;
    }
    .user-info {
        background-color: #f0f8ff;
        border: 1px solid #add8e6;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 30px;
        text-align: center;
    }
    .user-info p {
        margin: 5px 0;
        font-size: 1.1em;
        color: #333;
    }
    .enquiry-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        font-family: Arial, sans-serif; /* Ensure consistent font for tables */
    }
    .enquiry-table th, .enquiry-table td {
        border: 1px solid #ddd;
        padding: 12px 15px; /* Consistent padding */
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
    .enquiry-table th {
        background-color: #f2f2f2;
        font-weight: 600;
        color: #555;
    }
    .enquiry-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    .enquiry-table tr:hover {
        background-color: #f1f1f1;
    }
    .enquiry-status-new {
        color: white;
        background-color: #28a745;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        display: inline-block;
    }

    /* Responsive wrapper for tables */
    .responsive-table-wrapper {
        width: 100%;
        overflow-x: auto; /* Enables horizontal scrolling for tables */
        -webkit-overflow-scrolling: touch; /* Improves scrolling on iOS */
    }

    /* Mobile-specific adjustments for dashboard section and tables */
    @media (max-width: 768px) {
        .user-dashboard-section {
            max-width: 95%; /* Adjust width for smaller screens */
            padding: 15px; /* Reduce padding on mobile */
        }
        .user-dashboard-section h3 {
            font-size: 1.5em; /* Smaller heading on mobile */
        }
        .user-info p {
            font-size: 1em; /* Smaller text for user info */
        }
        .enquiry-table th,
        .enquiry-table td,
        .woocommerce-orders-table th,
        .woocommerce-orders-table td {
            font-size: 12px; /* Smaller font for table content on mobile */
            padding: 8px 10px; /* Reduced padding for table cells */
        }
        .order-action-button {
            padding: 6px 10px; /* Smaller button on mobile */
            font-size: 0.85em;
        }
    }
    
    /* WooCommerce Order Table Specific Styles - ensure consistency */
    .woocommerce-orders-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        font-family: Arial, sans-serif; /* Ensure consistent font for tables */
    }
    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        border: 1px solid #ddd;
        padding: 12px 15px; /* Consistent padding */
        text-align: left;
    }
    .woocommerce-orders-table th {
        background-color: #f2f2f2;
        font-weight: 600;
        color: #555;
    }
    .woocommerce-orders-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    .woocommerce-orders-table tr:hover {
        background-color: #f1f1f1;
    }
    .woocommerce-orders-table .order-status {
        font-weight: bold;
        text-transform: capitalize;
    }
    .woocommerce-orders-table .order-status.status-pending {
        color: #FFA500; /* Orange */
    }
    .woocommerce-orders-table .order-status.status-processing {
        color: #007bff; /* Blue */
    }
    .woocommerce-orders-table .order-status.status-completed {
        color: #28a745; /* Green */
    }
    .woocommerce-orders-table .order-status.status-cancelled,
    .woocommerce-orders-table .order-status.status-refunded,
    .woocommerce-orders-table .order-status.status-failed {
        color: #dc3545; /* Red */
    }
    .woocommerce-orders-table .order-items {
        font-size: 0.9em;
        color: #666;
    }
    .order-action-button {
        display: inline-block;
        padding: 8px 15px;
        background-color: #8B4513; /* Saddle Brown */
        color: #fff;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-size: 0.9em;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }
    .order-action-button:hover {
        background-color: #6F4E37; /* Darker earthy brown */
        color: #fff; /* Ensure text color remains white on hover */
    }
    