/* Decision screen styles */

#decision-container {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.decision-container {
  padding: 40px;
}

/* Memo styles */
.decision-memo {
  background-color: white;
  border: 2px solid #333;
  padding: 30px;
  margin-bottom: 40px;
  font-family: 'Courier New', Courier, monospace;
}

.memo-header {
  border-bottom: 2px solid #333;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.memo-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 2px;
}

.memo-field {
  margin-bottom: 8px;
  font-size: 1em;
  line-height: 1.6;
}

.memo-content {
  font-size: 1em;
  line-height: 1.8;
  white-space: pre-wrap;
}

/* Email styles */
.decision-email {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 40px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.email-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.email-field {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.email-attachment {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 0.9em;
}

.email-content {
  font-size: 1em;
  line-height: 1.8;
  white-space: pre-wrap;
}

/* Transcript styles */
.decision-transcript {
  background-color: #fefefe;
  border: 2px solid #333;
  padding: 30px;
  margin-bottom: 40px;
  font-family: 'Courier New', Courier, monospace;
}

.transcript-header {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  padding: 15px;
  background-color: #333;
  color: white;
  letter-spacing: 1px;
}

.transcript-content {
  font-size: 1em;
  line-height: 1.8;
  white-space: pre-wrap;
}

/* Options styles */
.decision-options {
  margin-top: 40px;
}

.options-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2c3e50;
  text-align: center;
}

.option-button {
  display: flex;
  width: 100%;
  padding: 20px;
  margin-bottom: 15px;
  background-color: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
  font-size: 1em;
}

.option-button:hover {
  background-color: #e9ecef;
  border-color: #2c3e50;
  transform: translateX(5px);
}

.option-button:active {
  background-color: #dee2e6;
}

.option-number {
  font-size: 1.5em;
  font-weight: 700;
  color: #2c3e50;
  margin-right: 15px;
  flex-shrink: 0;
}

.option-content {
  flex: 1;
}

.option-text {
  font-size: 1.1em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.option-details {
  font-size: 0.95em;
  color: #666;
  font-style: italic;
}

/* Confirmation message */
.decision-confirmation {
  text-align: center;
  padding: 100px 40px;
  animation: fadeIn 0.5s ease-in;
}

.confirmation-text {
  font-size: 1.8em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.confirmation-subtext {
  font-size: 1.2em;
  color: #666;
  font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
  .decision-container {
    padding: 20px;
  }

  .decision-memo,
  .decision-email,
  .decision-transcript {
    padding: 20px;
  }

  .memo-title {
    font-size: 1.2em;
  }

  .options-title {
    font-size: 1.4em;
  }

  .option-button {
    padding: 15px;
  }

  .option-number {
    font-size: 1.2em;
  }

  .option-text {
    font-size: 1em;
  }

  .option-details {
    font-size: 0.9em;
  }

  .confirmation-text {
    font-size: 1.4em;
  }

  .confirmation-subtext {
    font-size: 1em;
  }
}
