body {
  background: linear-gradient(145deg, #ffffff 0%, #fff5ed 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.navbar {
  height: 75px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 128, 8, 0.1);
  position: sticky;
  top: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sidebar {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  min-width: 280px;
  width: 280px;
  position: sticky;
  top: 75px;
  height: calc(100vh - 75px);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-right: 1px solid rgba(255, 128, 8, 0.1);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.02);
}
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}
.sidebar:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 128, 8, 0.2);
}
.sidebar .sidebar-top {
  padding: 30px 20px 20px;
  flex-shrink: 0;
}
.sidebar .sidebar-brand {
  display: flex;
  align-items: center;
  padding: 0 10px 25px;
}
.sidebar .sidebar-brand img {
  width: 32px;
  height: auto;
  margin-right: 12px;
  filter: drop-shadow(0 4px 6px rgba(255, 128, 8, 0.2));
}
.sidebar .sidebar-brand span {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: #2d3436;
}
.sidebar hr {
  border: 0;
  border-top: 1px solid rgba(255, 128, 8, 0.1);
  margin: 0 20px 20px;
}
.sidebar .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.sidebar .nav-link {
  display: flex;
  align-items: center;
  margin: 4px 16px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #636e72;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar .nav-link i {
  font-size: 1.2rem;
  margin-right: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar .nav-link:hover {
  background: rgba(255, 128, 8, 0.08);
  color: #ff8008;
}
.sidebar .nav-link:hover i {
  color: #ff8008;
  transform: translateX(3px);
}
.sidebar .nav-link.active {
  background: linear-gradient(135deg, #ff8008 0%, #ffab40 100%);
  color: white;
  box-shadow: 0 8px 15px -4px rgba(255, 128, 8, 0.4);
}
.sidebar .nav-link.active i {
  color: white;
}
.sidebar .sidebar-bottom {
  padding: 20px 16px 30px;
  border-top: 1px solid rgba(255, 128, 8, 0.1);
  flex-shrink: 0;
}
.sidebar .sidebar-bottom .logout-link {
  color: #d63031;
  background: rgba(214, 48, 49, 0.05);
  border: 1px solid rgba(214, 48, 49, 0.1);
}
.sidebar .sidebar-bottom .logout-link:hover {
  background: #d63031;
  color: white;
  box-shadow: 0 4px 10px rgba(214, 48, 49, 0.2);
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    height: 70px;
    min-width: 100%;
    flex-direction: row;
    border-right: none;
    border-top: 1px solid rgba(255, 128, 8, 0.1);
    z-index: 1100;
    overflow: hidden;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  }
  .sidebar .sidebar-top, .sidebar .sidebar-bottom, .sidebar hr, .sidebar .sidebar-brand {
    display: none;
  }
  .sidebar .nav-list {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .sidebar .nav-link {
    flex-direction: column;
    margin: 0;
    font-size: 0.65rem;
  }
  .sidebar .nav-link i {
    margin: 0 0 4px 0;
    font-size: 1.3rem;
  }
  .sidebar .nav-link.active {
    background: transparent;
    color: #ff8008;
    box-shadow: none;
  }
  .sidebar .nav-link.active i {
    color: #ff8008;
  }
}/*# sourceMappingURL=main.css.map */