.input-field {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
.input-field:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
.btn-primary {
  background: #059669;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover { background: #047857; }
.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  padding: 0.55rem 1.1rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #e5e7eb;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
}
.btn-secondary:hover { background: #e5e7eb; }
.tab-active {
  background: #fff;
  color: #059669;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
#fiches-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: #f8fafc;
  font-weight: 700;
  color: #334155;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
#fiches-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}
#fiches-table tbody tr:hover { background: #f0fdf4; }
.doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ecfdf5;
  color: #047857;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
