.cancel-order {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    font-family: Arial, sans-serif;
}
.cancel-order-message {
        padding: 14px 16px;
        margin-bottom: 20px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
    }

.success {
        background-color: #e6f4ea;
        color: #0a4f2d;
        border: 1px solid #9fd5b3;
        text-align: center;
}

.error {
        background-color: #fdecea;
        color: #8a036d;
        border: 1px solid #8a036d;
        text-align: center;
    }


/* Header */
.purchased-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.purchased-items-header h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.cancel-order-title h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: none;
}
.cancel-order-desc {
    font-size: 14px;
    color: #555;
}

.select-all {
    font-size: 14px;
    cursor: pointer;
}

/* Item card */

.item-box {
    display: grid;
    grid-template-columns: 30px 80px 1fr 50px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
    margin-bottom: 12px;
    text-align:center;
}

.item-image img {
    width: 70px;
    height: auto;
    border-radius: 4px;
}

/* Disabled rows */
.item-box.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Product image */
.product-thumb {
    width: 64px;
    height: auto;
    border-radius: 4px;
}

/* Text */

.item-details {
    font-size: 14px;
    line-height: 1.4;
}

.item-details strong {
    display: block;
    margin-bottom: 6px;
}

.item-details span {
    display: block;
    color: #555;
}


.item-qty select {
    width: 100%;
}

/* Form elements */

.cancel_textarea {
    width: 100%;
    padding: 10px;
    background: #f3f7fc;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Button */
.order-withdrawal-btn {
    width: 100%;
    background: #8a036d;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
}
.cancellation-privacy-msg {
    margin: 0px 0px 5px; !important;
}

/* Mobile responsive */
@media (max-width: 768px) {

.item-box {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

.qty-select {
        width: 20%;
    }


}