/* Basket/Button Styling for Billing Pie Plugin */

.billingpie-basket-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin: 5px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.billingpie-basket-btn:hover {
    background-color: #005177;
}
.billingpie-basket-list {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}
.billingpie-basket-list-item {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.billingpie-basket-list-item:last-child {
    border-bottom: none;
}
.billingpie-remove-btn {
    background: #d63638;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}
.billingpie-remove-btn:hover {
    background: #a00;
}
.hide {
    display: none;
}
.edit-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
}
.closeDownloadPopup {
    float: right;
}