.admin-wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background-color: #f8f9fa;
}


.admin-sidebar {
  min-width: 260px;
  max-width: 260px;
  background: #ffffff;
  border-right: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 999;
  transition: all 0.3s;
}

.sidebar-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f1f1;
}

.sidebar-menu {
  padding: 20px 10px;
  list-style: none;
  margin: 0;
  overflow-y: auto;
  flex-grow: 1;
}

.sidebar-item {
  margin-bottom: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #6c757d;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: #f1f5f9;
  color: #91cc34;
}

.sidebar-link i,
.sidebar-link svg {
  margin-right: 8px;
  padding: 8px;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #f8f9fa;
}


.admin-content {
  flex-grow: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


.admin-topbar {
  background: #ffffff;
  height: 70px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 998;
}

.admin-main-view {
  padding: 24px;
  flex-grow: 1;
}


@media (max-width: 768px) {
  .admin-sidebar {
    margin-left: -260px;
  }

  .admin-content {
    margin-left: 0;
  }

  .admin-sidebar.show {
    margin-left: 0;
  }
}