.layout-com-sidebar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sidebar {
  width: 60px;
  background: #FF9F4A;
  transition: width 0.3s ease;
  overflow: hidden;
  color: white;
  border-radius: 12px;
}

.sidebar.open {
  width: 220px;
}

.toggle-btn {
  padding: 10px;
  cursor: pointer;
  color: white;
  text-align: center;
  font-size: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}

.sidebar ul li button {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 15px;
  color: white;
  transition: background 0.2s;
  width: 100%;
  box-sizing: border-box;
  border: none;
  background-color: var(--laranja);
}

.sidebar ul li button:hover {
  background: #CC7830;
  border-radius: 8px;
}

.sidebar ul li .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar ul li .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sidebar ul li span {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar.open ul li span {
  opacity: 1;
}

.conteudo-pagina {
  flex: 1;
  width: 100%;
}

.corpo-dashboard {
  flex: 1;
  padding: 30px;
}

.area-cliente h1 {
  font-size: 2.5rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.bem-vindo {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}

#select-ano {
  width: 25%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 35px;
  background-color: white;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.table th,
.table td {
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 15px;
}

.table th:last-child,
.table td:last-child {
  border-right: none;
}

.table tr:last-child td {
  border-bottom: none;
}

.table thead {
  background-color: #FF9F4A;
}

.table th {
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.titulo-tabela {
  font-weight: bold;
  font-size: 18px;
}