.product-selector-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.product-table th, .product-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.product-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.product-table tbody tr:hover {
    background-color: #f5f5f5;
}

.quantity-input {
    width: 60px;
    padding: 5px;
}

.total-label {
    text-align: right;
    font-weight: bold;
}

.total-amount {
    font-weight: bold;
    color: #2a6496;
}

.product-selector-actions {
    margin-top: 20px;
    text-align: right;
}

.product-selector-actions .button {
    padding: 8px 15px;
    margin-left: 10px;
    background: #2a6496;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.product-selector-actions .button:hover {
    background: #1d4b75;
}

.product-selector-message {
    padding: 10px;
    margin: 20px 0;
    border-radius: 3px;
    display: none;
}

.product-selector-message.error {
    background: #ffdddd;
    color: #d8000c;
}

.product-selector-message.success {
    background: #ddffdd;
    color: #4f8a10;
}