/* ========================================
   QUESTS
   ======================================== */

#quests-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Quest Card */
.quest-card {
  background: linear-gradient(135deg, rgba(76, 111, 166, 0.15) 0%, rgba(55, 74, 107, 0.15) 100%);
  border: 2px solid rgba(76, 111, 166, 0.4);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.quest-card.completed {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(46, 125, 50, 0.15) 100%);
  border-color: rgba(76, 175, 80, 0.4);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* Quest Header */
.quest-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.quest-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.quest-info {
  flex: 1;
  min-width: 0;
}

.quest-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 4px 0;
  color: #fff;
}

.quest-description {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Quest Reward */
.quest-reward {
  padding: 8px 12px;
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid #d4af37;
  border-radius: 6px;
  margin-bottom: 12px;
}

.reward-text {
  font-size: 13px;
  color: #d4af37;
  font-weight: 600;
}

/* Quest Buttons */
.quest-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}
