/* assets/gamify.css */

.gamify-badge {
  display: inline-block;
  padding: 10px;
  margin: 8px;
  border-radius: 8px;
  background-color: #f0f8ff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.gamify-badge img {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}

.gamify-xp-bar {
  width: 100%;
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  margin: 15px 0;
  height: 20px;
}

.gamify-xp-fill {
  background-color: #4caf50;
  height: 100%;
  transition: width 0.4s ease-in-out;
}