.send-offer-wrapper {
    display: flex;
    flex-direction: column; /* stack elements vertically */
    align-items: flex-start; /* left-align everything */
    margin-top: 15px;
    gap: 10px; /* consistent spacing between elements */
}

#offer_amount {
    width: 200px;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: -20px;
    margin-bottom: 5px; /* space between input and button/message */
    box-sizing: border-box;
}

#send_offer_button {
    background-color: #8a5082;
    color: #fff;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 5px;
}

#send_offer_message {
    font-weight: bold;
    font-size: 14px;
    text-align: left; /* ensure left alignment */
    margin-top: 5px;
    color: #333;
}

/* WooCommerce specific fix */
.woocommerce div.main-wrapper .product-view div.single-product-info form.cart button:before { 
    display: none;
}

/* Modal overlay */
#send_offer_modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

/* Modal content box */
.send_offer_modal_content {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.send_offer_close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.send_offer_close:hover {
    color: #ff0000;
}

/* Form fields */
#send_offer_form input[type="text"],
#send_offer_form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Submit button */
#send_offer_form button[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

#send_offer_form button[type="submit"]:hover {
    background-color: #005177;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
