/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

.monster-single .entry-title {
  text-align: center;
}

.monster-featured-image {
  text-align: center;
  margin: 2rem 0;
}

.monster-featured-image img {
  max-width: 50%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.monster-single .entry-content {
  font-size: 1.05rem;
  line-height: 1.5rem;
  text-align: center;
  margin-top: 40px;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
}

.rarity-stars {
  margin-top: 1.5rem;
  font-size: 1.10rem;
  font-family: inherit;
}

.rarity-stars .star {
  font-size: 1.5rem;
  color: #d4d4d4; /* Gray for empty stars */
  display: inline-block;
  margin-right: 0.1rem;
  transition: transform 0.2s;
}

.rarity-stars .star.filled {
  color: #facc15; /* Bright yellow */
}

.rarity-stars .star:hover {
  transform: scale(1.1);
}

.tracker-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tracker-btn {
  font-family: 'Fredoka', sans-serif;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.own-btn {
  background-color: #b5f5d1;
  color: #065f46;
}

.wish-btn {
  background-color: #f5d0ff;
  color: #701a75;
}

.tracker-btn:hover:enabled {
  transform: scale(1.05);
}

.tracker-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

