.product-thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.product-image-placeholder {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder:before {
    content: "📷";
    font-size: 16px;
    opacity: 0.5;
}

.fast-order-bottom-controls {
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.btn-add-rows-bottom {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-add-rows-bottom:hover {
    background: #005a87;
}

.fast-order-wrapper[data-style="modern"] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.fast-order-wrapper[data-style="modern"] .fast-order-products-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fast-order-wrapper[data-style="classic"] .fast-order-products-table {
    border: 2px solid #333;
}

.fast-order-wrapper[data-style="minimal"] .fast-order-products-table {
    border: none;
    background: transparent;
}

.fast-order-wrapper[data-style="minimal"] .fast-order-products-table th,
.fast-order-wrapper[data-style="minimal"] .fast-order-products-table td {
    border: none;
    border-bottom: 1px solid #eee;
}