/* Container for the product page input */
.maf-product-notes {
    margin-bottom: 25px;
    padding: 10px 0;
}

.maf-product-notes label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* The Input Field */
.maf-product-notes input {
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.maf-product-notes input:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 124, 186, 0.3);
}

/* Cart/Checkout Display Styling */
.maf-notes {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #ccc;
    font-size: 0.95em;
}

.maf-notes strong {
    margin-right: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .maf-product-notes input {
        max-width: 100%;
    }
}