/* Tu estructura base (NO TOCAR) */
.contenedorMainAdmin {
  display: flex;
}
.menuAdmin {
  width: 15%;
  min-height: 100vh;
  background-color: #0a141d;
}

.contenedorDashboardTotal {
  width: 85%;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.contenedorDashboardTotal.administracion {
  min-height: 100vh;
}

/* Sidebar Admin (AGREGAR ESTO) */
.sidebar-admin {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a141d 0%, #1a2a3d 100%);
  display: flex;
  flex-direction: column;
}

.sidebar-admin-logo {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-admin-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.sidebar-admin-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  color: #b0b8c1;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 5px 15px;
  border-radius: 10px;
}

.sidebar-link:hover {
  background: rgba(0, 123, 191, 0.2);
  color: white;
  transform: translateX(5px);
}

.sidebar-link.active {
  background: #007bbf;
  color: white;
}

.sidebar-link i {
  font-size: 20px;
  width: 25px;
  text-align: center;
}

.sidebar-admin-footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link.logout {
  color: #b0b8c1;
}

.sidebar-link.logout:hover {
  background: rgba(0, 123, 191, 0.2);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .contenedorMainAdmin {
    flex-direction: column;
  }

  .menuAdmin {
    width: 100%;
    min-height: auto; 
    height: auto;
  }

  .contenedorDashboardTotal {
    width: 100%;
  }

  .sidebar-admin {
    min-height: auto; 
    height: auto;
    position: relative;
  }
}
