.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1010;
}

.popup-content {
    background-color: white;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 0 !important;
}

.popup-content h2 {
    margin-bottom: 10px;
}

.popup-content table {
    width: 100%;
    border-collapse: collapse;
}

.popup-content th, .popup-content td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.popup-content th {
    background-color: #f4f4f4;
}

.popup-content input.quantity-input {
    width: 50px;
}

.popup-content button {
    margin-top: 10px;
    margin-right: 10px;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.popup-content button:hover {
    background-color: #0056b3;
}
