/* Dialogue Modal Styles */

.dialogue-content {
  padding: 5px;
}

.npc-portrait {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #16213e 0%, #1a2640 100%);
  /* Dark blue */
  border-radius: 8px;
  margin-bottom: 20px;
}

.npc-icon {
  font-size: 3em;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  /* Dark bg */
  border-radius: 50%;
  border: 3px solid #f39c12;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.npc-info {
  flex: 1;
}

.npc-info h4 {
  margin: 0;
  color: #ecf0f1;
  /* Light text */
  font-size: 1.2em;
}

.npc-era {
  margin: 5px 0 0 0;
  color: #95a5a6;
  /* Light grey */
  font-size: 0.85em;
}

.dialogue-box {
  background: rgba(0, 0, 0, 0.4);
  /* Dark bg */
  border-left: 4px solid #f39c12;
  /* Orange accent */
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dialogue-text {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  color: #ecf0f1;
  /* Light text */
  font-style: italic;
}

.dialogue-choices h5 {
  margin: 0 0 12px 0;
  font-size: 0.95em;
  color: #f39c12;
  /* Orange headers */
  font-weight: bold;
}

.choices-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choice-button {
  background: linear-gradient(135deg, #16213e 0%, #1a2640 100%);
  /* Dark blue */
  border: 2px solid #34495e;
  border-radius: 8px;
  padding: 12px 15px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.choice-button:hover {
  border-color: #f39c12;
  /* Orange on hover */
  background: linear-gradient(135deg, #1e3a5f 0%, #1a2640 100%);
  /* Lighter blue */
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.choice-number {
  font-weight: bold;
  color: #f39c12;
  /* Orange */
  font-size: 1.1em;
  min-width: 20px;
}

.choice-text {
  flex: 1;
  color: #ecf0f1;
  /* Light text */
  font-size: 0.95em;
  line-height: 1.5;
}

.choice-effects {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.choice-effects span {
  font-size: 0.75em;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.choice-effects .positive {
  background: #d4edda;
  color: #155724;
}

.choice-effects .negative {
  background: #f8d7da;
  color: #721c24;
}

.quest-info {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.quest-title {
  margin: 0;
  font-size: 0.85em;
  color: #95a5a6;
  /* Light grey */
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .npc-portrait {
    flex-direction: column;
    text-align: center;
  }

  .npc-icon {
    font-size: 2.5em;
    width: 60px;
    height: 60px;
  }

  .choice-button {
    padding: 10px 12px;
  }

  .choice-text {
    font-size: 0.9em;
  }
}