/* Container for sample order button and text */
.sample-order-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Sample order button style */
.sample-order-container .button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sample-order-container .button:hover {
    background-color: #005177;
}

/* Disabled button */
.sample-order-container .button.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sample info text */
.sample-info-text {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

/* WooCommerce notification adjustments */
.woocommerce-notices-wrapper .woocommerce-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 10px 15px;
    border: 1px solid #c1e2b3;
    border-radius: 5px;
    margin-top: 10px;
}
