/* Melplas Management Frontend Styles */
/* CSS Isolation: All classes prefixed with .melplas-frontend- to prevent conflicts */

.melplas-frontend-widget {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.melplas-frontend-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.melplas-frontend-content {
    color: #495057;
    line-height: 1.6;
}

/* Product Display */
.melplas-frontend-product {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
}

.melplas-frontend-product-info {
    flex: 1;
}

.melplas-frontend-product-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.melplas-frontend-product-price {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
}

.melplas-frontend-stock-info {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .melplas-frontend-product {
        flex-direction: column;
        text-align: center;
    }
} 