/* Vendor Remarks Frontend Styles */

.vendor-remark {
    margin: 20px 0;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
}

.vendor-remark::before {
    content: "Remarks on Seller";
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #555;
}

.vendor-remark p:last-child {
    margin-bottom: 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .vendor-remark {
        padding: 12px;
        margin: 15px 0;
    }
} 