
/* Product Table */
.product-selector table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: 'Segoe UI', sans-serif;
}
.product-selector th,
.product-selector td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.product-selector tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.product-selector tbody tr:hover {
    background-color: #f1f1f1;
}

/* Search Field */
#product-search {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Selected Products List */
.selected-products {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #fafafa;
    margin-top: 20px;
}
.selected-products ul {
    list-style: none;
    padding: 0;
}
.selected-products li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 5px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.selected-products button.remove-product {
    background: #ff4d4f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
}

/* Clear All Button */
button#clear-all {
    margin-top: 10px;
    padding: 6px 12px;
    border: none;
    background-color: #ff7875;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}
