/*
 * Voxel Gamification - Public Styles
 *
 * NOTE: All admin-specific styles that were causing conflicts with the Voxel theme's
 * backend UI have been removed from this file. This ensures that the plugin's
 * admin pages inherit their appearance directly from the Voxel theme, preventing
 * layout breakage and visual inconsistencies.
 *
 * This file should now only contain styles intended for the public-facing
 * elements of the plugin, such as shortcodes and widgets.
*/

/* Example styles for public-facing shortcodes or widgets can go here. */

/* Styles for .voxel-leaderboard-public can be added here if needed */

.vp-rewards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vp-reward {
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vp-reward__title {
    font-weight: bold;
}

.vp-reward__meta {
    display: flex;
    gap: 15px;
    color: #555;
}