:root {
  --accent: #3b82f6;
  --text: #f9fafb;
  --muted: #9ca3af;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #0b1020;
  color: var(--text);

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
.header {
  padding: 20px 24px;
  background: #111827;
  border-bottom: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  margin: 0;
  font-size: 2.2rem;
}

.header h1 span {
  color: var(--accent);
}

/* STATUS NO TOPO */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--accent);
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

/* LAYOUT PRINCIPAL */
.layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .layout {
    grid-template-columns: 1fr 2fr;
  }
}

/* SIDEBAR */
.sidebar {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 14px;
  padding: 18px;
}

.panel-title {
  color: var(--accent);
  margin-bottom: 10px;
}

.panel-text {
  color: var(--muted);
  line-height: 1.5;
}

/* DOCUMENTOS */
.doc-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.doc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-accent {
  color: var(--accent);
  text-decoration: none;
  flex: 1;
}
.doc-accent:hover {
  text-decoration: underline;
}

.doc-text {
  color: var(--text);
  text-decoration: none;
  flex: 1;
}

.doc-text:hover {
  text-decoration: underline;
}

.open-icon,
.pdf-icon {
  width: 22px;
  height: 22px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.open-icon:hover,
.pdf-icon:hover {
  opacity: 1;
}

.doc-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ÁREA PRINCIPAL */
.main-content {
  padding: 0;
  height: calc(100vh - 160px);
}

.map-container {
  width: 100%;
  height: 100%;
  border-left: 1f2937;
}

/* RODAPÉ */
.footer {
  padding: 16px 24px;
  background: #111827;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* BUSCA */
#search-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#search-input {
  width: 85%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#search-results {
  position: absolute;
  top: 45px;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

.result-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  columns: var(--muted);
  background-color: rgba(15, 23, 42, 0.9);
}

.result-item:hover {
  color: #3b82f6;
}

/* TABELA DA PÁGINA DE DADOS */
.content {
  flex: 1;
  padding: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

th {
  background: #1f2937;
  color: var(--accent);
  padding: 12px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid #374151;
}

td {
  padding: 12px;
  border-bottom: 1px solid #1f2937;
  color: var(--text);
  font-size: 0.9rem;
}

tr:hover {
  background: rgba(59, 130, 246, 0.08);
}

.highlight-row {
  background: rgba(59, 130, 246, 0.25) !important;
  border-left: 4px solid var(--accent);
}

.map-icon {
  width: 22px;
  height: 22px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.map-icon:hover {
  opacity: 1;
}
