/* 
 * This file contains the CSS styles for the public-facing part of the Ecommerce66 MakeSalable plugin.
 */

/* Hide price and Add to Cart button when disabled */
.e66-makesalable-disabled {
    display: none;
}

/* Custom message styling */
.e66-makesalable-custom-message,
.e66-custom-message,
.e66-custom-message-loop,
.e66-custom-message-price {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.e66-custom-message-price {
    display: inline-block;
}

/* Styling for links within custom messages */
.e66-custom-message a,
.e66-custom-message-loop a,
.e66-custom-message-price a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.e66-custom-message a:hover,
.e66-custom-message-loop a:hover,
.e66-custom-message-price a:hover {
    text-decoration: underline;
}