/* 📌 Asegurar que html y body ocupen toda la pantalla */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f4f4f4;
  overflow: hidden;
}

/* 📌 Contenedor principal */
.app-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh; /* ✅ Ocupa toda la pantalla */
}

/* 📌 Ajustar la estructura de la página */
.main-layout {
  display: flex;
  flex-direction: row;
  flex: 1; /* ✅ Se ajusta automáticamente */
}

/* 📌 Ajustar la barra lateral */
.sidebar {
  width: 250px;
  min-height: 100vh;
  background-color: #111;
  color: white;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
}

/* 📌 Ajustar el contenido principal */
.content {
  flex: 1;
  margin-left: 250px; /* ✅ Empujar el contenido para que no tape el sidebar */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
}



  