.purchase-history-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.purchase-history-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.purchase-history-table {
    width: 100%;
    border-collapse: collapse;
}

.purchase-history-table th, .purchase-history-table td {
    padding: 12px 15px;
    text-align: left;
}

.purchase-history-table th {
    background-color: #f4f4f4;
    font-weight: 600;
    color: #555;
}

.purchase-history-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.purchase-history-table tr:hover {
    background-color: #f1f1f1;
}

.purchase-history-table td {
    border-bottom: 1px solid #ddd;
    color: #666;
}

.purchase-history-table td a {
    color: #3498db;
    text-decoration: none;
}

.purchase-history-table td a:hover {
    text-decoration: underline;
}

/* custom-plugin-styles.css */
