/* Reset básico */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #AEE4F8;
  color: #005A9C;
}
.topbar{ 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:12px 20px; 
  background:var(--card-bg); 
  border-bottom:1px solid rgba(0,0,0,0.04);
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-title h1{ 
  margin:0; 
  font-size:1.1rem; 
  color:var(--text-primary);
}

.topbar-title .subtitle {
  margin: 4px 0 0 0;
  font-size: 0.85rem;
  color: #6c757d;
}

.topbar-actions{ 
  display:flex; 
  gap:12px; 
  align-items:center;
  flex-wrap: wrap;
}

textarea{
  width: 30vw;
  height: 40vh;
}
/* Container principal */
.container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Título */
.container h2 {
  margin-top: 40px;
  font-size: 1.6em;
  color: #F7941D;
  text-align: center;
}

/* Formulário */
#formRelatorio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Select elegante */
#selectAluno {
  padding: 12px;
  border: 2px solid #005A9C;
  border-radius: 8px;
  font-size: 1em;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

#selectAluno:focus {
  border-color: #F7941D;
  outline: none;
}

/* Textarea estilizado */
#textoRelatorio {
  padding: 14px;
  border: 2px solid #005A9C;
  border-radius: 8px;
  font-size: 1em;
  resize: vertical;
  min-height: 150px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

#textoRelatorio:focus {
  border-color: #8DC63F;
  outline: none;
}

/* Botão */
#formRelatorio .botao {
  align-self: flex-end;
  padding: 12px 24px;
  background-color: #8DC63F;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#formRelatorio .botao:hover {
  background-color: #6FA82E;
  transform: translateY(-2px);
}

/* Lista de relatórios */
#listaRelatorios {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

#listaRelatorios li {
  background: #F2F9FC;
  border-left: 4px solid #F7941D;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 0.95em;
  line-height: 1.4;
}

/* TABS */
.tabs {
  margin-top: 20px;
}

.tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #ddd;
  margin-right: 5px;
}

.tab-btn.active {
  background: #333;
  color: #fff;
}

.tab-content {
  display: none;
  margin-top: 20px;
}

.tab-content.active {
  display: block;
}


/* Responsividade */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  #formRelatorio .botao {
    width: 100%;
    align-self: center;
  }
}

#listaRelatorioPsicologo li{
     margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#textoEdicao {
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical; /* permite aumentar manualmente */
  display: none;
}

