body {
  font-family: Arial, sans-serif;
  background: #f8f9fb;
  margin: 0;
  padding: 2rem;
}

.container {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.model-switch {
  margin-bottom: 1rem;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.model-switch label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

textarea {
  width: 100%;
  height: 120px;
  margin-bottom: 1rem;
  padding: 10px;
  font-size: 14px;
}

button {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  background: #0f766e;
  color: white;
  border: none;
  border-radius: 6px;
}

.progress-wrapper {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  margin-top: 1rem;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 8px;
  width: 0%;
  background: #0f766e;
  transition: width 0.3s ease;
}

.metrics {
  margin-top: 1rem;
  font-size: 14px;
  display: grid;
  gap: 4px;
}

#highlighted {
  padding: 1rem;
  background: #f3f4f6;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.entity {
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

.PER {
  background: #fca5a5;
}
.LOC {
  background: #93c5fd;
}
.ORG {
  background: #6ee7b7;
}
.MISC {
  background: #fde68a;
}
