.quickorder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.quickorder-search {
    margin-bottom: 30px;
    position: relative;
}

.quickorder-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.quickorder-results .product-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.quickorder-results .product-item:hover {
    background-color: #f8f8f8;
}

.quickorder-results .product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.quickorder-results .product-info {
    flex: 1;
}

.quickorder-results .product-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.quickorder-results .product-reference {
    color: #666;
    font-size: 0.9em;
}

.quickorder-results .product-price {
    color: #2fb5d2;
    font-weight: bold;
}

.quickorder-table {
    width: 100%;
    border-collapse: collapse;
}

.quickorder-table th {
    background-color: #f8f8f8;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.quickorder-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.quickrow-results {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    width: 100%;
}

.quickorder-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.quickorder-csv {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.quickorder-csv .form-group {
    margin-bottom: 15px;
}

.quickorder-add-row {
    margin-right: 5px;
}

.quickorder-remove-row {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.quickorder-remove-row:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

@media (max-width: 768px) {
    .quickorder-table {
        display: block;
        overflow-x: auto;
    }
    
    .quickorder-actions {
        flex-direction: column;
    }
    
    .quickorder-actions button {
        width: 100%;
    }
}