/* Boss Intro Modal (Updated for .npc-portrait use) */

.boss-intro-modal .modal-content {
  height: 284px;
  max-width: 480px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  font-family: 'Arial', sans-serif;
}

.boss-header {
  background-color: #222;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 12px 20px;
  text-transform: uppercase;
  border-bottom: 1px solid #444;
  text-align: left;
}

.boss-body {
  display: flex;
  margin-left: 24px;
  flex-wrap: nowrap;
  position: relative;
}

.npc-portrait {
  margin-top: 6px;
  margin-bottom: 1px;
  margin-right: 1px;
  max-height: 220px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.boss-dialogue {
  margin-top: 12px;
  flex: 1;
}

.boss-dialogue p {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #1f1e1e;
}

.boss-intro-modal #boss-line {
  margin-top: 8px;
  display: block;
}

.boss-intro-modal .accept-button {
  background-color: #007bff;
  color: #fff;
  padding: 8px 18px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.boss-line-highlight {
  display: block;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 6px;
}

.boss-body .accept-button {
  position: absolute;
  bottom: 20px;
  left: 0px; /* or 50% with transform to center */
}

.challenge-line {
  line-height: 1.4;
  color: #555; /* Or something thematic like a red or gold */
  font-size: 16px;
  display: block;
  margin-top: 6px;
}

.highlighted-challenge {
  font-size: 1.1em;   /* Slightly bigger than normal text */
  font-weight: bold;  /* Optional: make it stand out */
}
