.interview-container {
  max-width: 700px;
  margin: 3rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Interview Chat UI */
#ip-chat {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

#ip-messages {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.ip-question {
  font-weight: bold;
  color: #333;
  margin: 1rem 0 0.5rem;
}

.ip-user {
  background: #e0f7fa;
  padding: 0.5rem;
  margin: 0.25rem 0;
  border-radius: 4px;
  white-space: pre-wrap;
}

.ip-ai {
  background: #fff3e0;
  padding: 0.5rem;
  margin: 0.25rem 0;
  border-radius: 4px;
  white-space: pre-wrap;
}

#ip-input {
  width: 100%;
  resize: vertical;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

#ip-send {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

#ip-send:hover {
  background-color: #005177;
}