/* RESET GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
  background: #f4f6f9;
  color: #111;
}

/* HEADER GLOBAL */
header {
  background: #2f5597;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  height: 64px;
}

header .logo img {
  height: 36px;
}

header h1 {
  font-size: 22px;
  font-weight: 800;
}

header .menu-icon {
  font-size: 26px;
  cursor: pointer;
}

/* CONTENEDOR GENERAL */
.container {
  padding: 18px;
  margin-right: 220px;
}

/* MENÚ LATERAL DERECHO */
.side-menu {
  position: fixed;
  top: 64px;
  right: 0;
  width: 200px;
  background: #2f5597;
  height: calc(100% - 64px);
  padding: 12px;
  overflow: auto;
  transition: transform .2s ease;
}

.side-menu a {
  display: block;
  text-decoration: none;
  background: #fff;
  color: #111;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 700;
}

.side-menu a:hover { background: #dbe5f7; }

.side-menu a.active {
  background: #dbe5f7;
  outline: 2px solid rgba(255,255,255,.35);
}

.side-menu a.disabled {
  opacity: .65;
  pointer-events: none;
}

/* Estado colapsado */
body.menu-collapsed .side-menu {
  transform: translateX(220px);
}
body.menu-collapsed .container {
  margin-right: 18px;
}
