
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
}
.container {
  display: flex;
}
.sidebar {
  width: 280px;
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}
.sidebar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.main {
  flex-grow: 1;
  padding: 20px;
  background: white;
}
select {
  padding: 8px;
  font-size: 16px;
  margin-bottom: 20px;
}
.graficos {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
canvas {
  background: #f0f0f0;
  border-radius: 8px;
  padding: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
table th, table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}
table thead {
  background: #003366;
  color: white;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .graficos {
    flex-direction: column;
    gap: 20px;
  }
  .sidebar {
    width: 100%;
  }
  canvas {
    width: 100% !important;
    height: auto !important;
  }
}

.sidebar p, .sidebar h2 {
  text-align: left;
}

.main h1 {
  margin-top: 0;
}

select {
  margin-bottom: 10px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.graficos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.graficos canvas {
  width: 100% !important;
  max-width: 600px;
  height: auto !important;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 10px;
}

.sidebar img {
  width: 100%;
  height: auto;
  max-width: 180px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
