/* WP Virtual Currency Public Styles */

.wpvc-user-points {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    font-size: 18px;
}

.wpvc-user-transactions {
    margin: 20px 0;
}

.wpvc-user-transactions h3 {
    margin-bottom: 15px;
    color: #333;
}

.wpvc-transactions-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.wpvc-transactions-table th,
.wpvc-transactions-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.wpvc-transactions-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.wpvc-transactions-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.wpvc-transactions-table tr:hover {
    background-color: #f5f5f5;
}

