.wps-order-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wps-order-details h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.notification-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.download-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
}

.download-btn:hover {
    opacity: 0.9;
}

.purchase-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.purchase-details h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #374151;
}

.purchase-table {
    width: 100%;
    border-collapse: collapse;
}

.purchase-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.product-name {
    color: #374151;
    font-weight: 500;
}

.quantity {
    color: #6b7280;
    margin-left: 0.5rem;
}

.product-total {
    text-align: right;
    color: #374151;
    font-weight: 500;
}