/* Game Reward Progress Bar Styles */
.grs-progress-container {
    width: 100%;
    max-width: 500px;
    margin: 20px 0;
}

.grs-progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
}

.grs-progress-bar {
    height: 100%;
    transition: width 0.5s ease-in-out, background-color 0.5s ease;
}

.grs-progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.grs-points-text {
    font-weight: bold;
    color: white !important;
}

.grs-status-text {
    color: #fff#666;
    font-style: italic;
}