.site-header {
  background: #0a192f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .site-name {
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #64ffda 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.site-header .site-logo img {
  filter: brightness(0) invert(1);
}
.site-header .site-title {
  color: #ffffff !important;
  text-decoration: none !important;
}

.navbar-nav {
  gap: 0.5rem;
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.5rem 1.5rem !important;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.navbar-nav .nav-link:hover {
  color: #64ffda !important;
  background: rgba(100, 255, 218, 0.05);
  transform: translateY(-1px);
}
.navbar-nav .nav-link.active {
  color: #ffffff !important;
  background: rgba(100, 255, 218, 0.15);
  border: 1px solid rgba(100, 255, 218, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-wrapper {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #0a192f;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  min-height: calc(100vh - 65px);
  padding: 2rem 0.75rem;
}
.sidebar-wrapper #sidebar-toggle-btn {
  position: absolute;
  right: -14px;
  top: 24px;
  width: 28px;
  height: 28px;
  background: #0f172a;
  color: #64ffda;
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}
.sidebar-wrapper #sidebar-toggle-btn:hover {
  background: #1d4ed8;
  color: #fff;
  transform: scale(1.1);
}

.block-menu h2, .block-menu h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #475569;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
}

.nav {
  flex-direction: column;
  gap: 0.35rem;
}
.nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav .nav-item .nav-link::before {
  font-family: "bootstrap-icons";
  margin-right: 15px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.nav .nav-item .nav-link[href*=dashboard]::before {
  content: "\f38b";
}
.nav .nav-item .nav-link[href*=recording]::before {
  content: "\f50a";
}
.nav .nav-item .nav-link[href*=live]::before {
  content: "\f222";
}
.nav .nav-item .nav-link[href*=setting]::before {
  content: "\f3e5";
}
.nav .nav-item .nav-link:hover {
  color: #64ffda !important;
  background: rgba(100, 255, 218, 0.05);
}
.nav .nav-item .nav-link:hover::before {
  color: #64ffda;
  transform: translateX(3px);
}
.nav .nav-item .nav-link.active {
  color: #ffffff !important;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.2);
}
.nav .nav-item .nav-link.active::before {
  color: #64ffda;
}

.main-content-area {
  padding: 2.5rem;
  min-height: calc(100vh - 65px);
  background: #ffffff;
}

body.sidebar-collapsed .sidebar-wrapper {
  width: 70px !important;
  flex: 0 0 70px !important;
  padding: 2rem 0.5rem;
}
body.sidebar-collapsed .sidebar-wrapper #sidebar-toggle-btn i {
  transform: rotate(180deg);
}
body.sidebar-collapsed .sidebar-wrapper .nav-link {
  justify-content: center;
  padding: 0.8rem 0.5rem;
}
body.sidebar-collapsed .sidebar-wrapper .nav-link span {
  display: none;
}
body.sidebar-collapsed .sidebar-wrapper .nav-link::before {
  margin-right: 0 !important;
  font-size: 1.5rem;
}
body.sidebar-collapsed .sidebar-wrapper .block-menu h2, body.sidebar-collapsed .sidebar-wrapper .block-menu h5 {
  display: none;
}
body.sidebar-collapsed .main-content-area {
  width: calc(100% - 70px) !important;
  flex: 0 0 calc(100% - 70px) !important;
}

.camera-footer {
  background-color: #0a192f;
  color: #a8b2d1;
  padding: 50px 20px 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
}
.camera-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.camera-footer__col {
  flex: 1 1 200px;
}
.camera-footer__col h3 {
  color: #e6f1ff;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.camera-footer__col p {
  line-height: 1.6;
  margin: 0;
}
.camera-footer__col a {
  display: block;
  color: #ccd6f6;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}
.camera-footer__col a:hover {
  color: #64ffda;
  transform: translateX(5px);
}
.camera-footer__logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.camera-footer__logo::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #64ffda;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(100, 255, 218, 0.4);
}
.camera-footer__copyright {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #8892b0;
}

/*# sourceMappingURL=style.css.map */
