#menu-container {
  position: fixed;
  top: 124px;
  left: 0;
  display: flex;
  height: calc(100vh - 64px);
  overflow-x: auto;
  background: white;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-301px);
  width: auto;
  z-index: 1050;
}
#menu-container.visible {
  transform: translateX(0);
}
.menu-panel {
  width: 300px;
  border-right: 1px solid #eee;
  padding-top: 8px;
  box-sizing: border-box;
  overflow-y: auto;
  height: 100%;
  flex-shrink: 0;
  border-radius: 0 12px 12px 0;
  background: white;
  box-shadow: inset -3px 0 6px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: opacity 0.3s ease;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  margin: 4px 12px;
  transition: background-color 0.2s ease-in-out;
  user-select: none;
  font-size: 1rem;
}
.menu-item:hover {
  background-color: #f0f4ff;
}
.menu-item.active {
  background-color: #106eea;
  color: white;
}
.icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.arrow {
  font-weight: bold;
  color: #888;
  flex-shrink: 0;
}
#content-area {
  margin-left: 0;
  margin-top: 64px;
  padding: 1rem;
  flex-grow: 1;
  overflow-y: auto;
  background: #f9f9f9;
  transition: margin-left 0.3s ease-in-out;
}
#content-area.shifted {
  margin-left: 260px;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
}
.card h5 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #106eea;
}
.card p {
  margin: 0;
  color: #444;
}

.menu-item .menu-link {
  color: black !important;
  text-decoration: none;
}

.breadcrumb {
  font-size: 0.75rem;
  color: #666;
  margin: 0.5rem 1rem;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.breadcrumb i {
  color: #106eea;
}
.breadcrumb span {
  cursor: pointer;
}
