/* Navigation Layout */
.app-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.main-content {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
  position: relative;
  transition: margin-left 0.3s ease;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  width: 240px;
  height: calc(100vh - 40px);
  background: #090909;
  box-shadow: 1px 0 0 #1a1a1a;
  padding: 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

.nav-desktop .nav-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background-color 0.2s;
}

.nav-desktop .nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-desktop .nav-item.active {
  background: rgba(0, 255, 144, 0.1);
  color: #00ff90;
}

.nav-desktop .nav-item .material-symbols-rounded {
  margin-right: 12px;
  font-size: 24px;
}

/* Mobile Navigation */
.nav-mobile {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    box-shadow: 0 -1px 0 #1a1a1a;
    padding: 6px 0;
    z-index: 1000;
}

.nav-mobile .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 8px;
  width: 48px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.nav-mobile .nav-item.active {
  color: #00ff90;
}

.nav-mobile .nav-item .material-symbols-rounded {
  font-size: 24px;
  margin-bottom: 4px;
}

.nav-mobile .nav-item span:not(.material-symbols-rounded) {
  font-size: 12px;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .main-content {
    margin-left: 280px;
    margin-right: -280px;
  }

  .video-container {
    width: calc(100vw - 280px) !important;
  }
}

/* Adjust video container for mobile */
@media (max-width: 767px) {
  .video-container {
    width: 100vw !important;
    height: calc(100% - 56px) !important; /* Account for mobile nav height */
  }

  #app {
    height: calc(100vh - 56px) !important;
  }
} 