/* Basic styling for the Enquiry buttons */
.wp-enquiry-button {
    background-color: #4A4A4A; /* CHARCOAL */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Allows padding and margin */
    margin-top: 15px; /* Spacing from product meta */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow */
}
.wp-enquiry-button:hover {
    background-color: #E2492F; /* TANGERINE TANGO on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
/* Styling for the form containers (hidden by default) */
#product_inq_meta,
#product_inq_tab {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
/* Ensure FluentForm elements within the container are styled reasonably */
#product_inq_meta .fluentform,
#product_inq_tab .fluentform {
    /* Basic reset/override for FluentForm if needed */
}
#product_inq_meta .fluentform label,
#product_inq_tab .fluentform label {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    display: block;
}
#product_inq_meta .fluentform input[type="text"],
#product_inq_meta .fluentform input[type="email"],
#product_inq_meta .fluentform textarea,
#product_inq_tab .fluentform input[type="text"],
#product_inq_tab .fluentform input[type="email"],
#product_inq_tab .fluentform textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
#product_inq_meta .fluentform button[type="submit"],
#product_inq_tab .fluentform button[type="submit"] {
    background-color: #4CAF50; /* Green for submit */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    width: auto; /* Allow button to size to content */
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#product_inq_meta .fluentform button[type="submit"]:hover,
#product_inq_tab .fluentform button[type="submit"]:hover {
    background-color: #45a049; /* Darker green on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
/* Ensure the shortcode container doesn't have extra styling that breaks layout */
.wp-enquiry-meta, .wp-enquiry-tab {
    clear: both; /* Ensures it doesn't float next to other product elements */
    margin-bottom: 20px;
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .wp-enquiry-button {
        width: 100%; /* Full width buttons on small screens */
        box-sizing: border-box;
    }
    #product_inq_meta,
    #product_inq_tab {
        padding: 15px; /* Slightly less padding on small screens */
    }
}
