/* _base.css */

/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #070707;
  font-family: "Montserrat", sans-serif;
  color: white;
}

/* Стили для шапки */
.navbar {
  width: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-container {
  display: flex;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ffffff, #a48fff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  background-size: 200% auto;
  background-position: -100% center;
  animation: shineText 4s infinite ease-in-out;
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
}

.corp-tag {
  font-size: 12px;
  font-weight: 500;
  color: #a48fff;
  text-transform: lowercase;
  letter-spacing: 1px;
  padding: 2px 6px;
  border: 1px solid #a48fff33;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  transform: translateY(-2px);
}

/* Основная структура */
.main-container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 250px;
  height: 100%;
  background-color: #1d1d1d;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgb(235, 235, 235);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}

.sidebar h3 {
  font-size: 20px;
  margin: 30px 0 10px;
}

.sidebar ul {
  list-style-type: none;
}

.sidebar-item {
  padding-left: 20px;
  margin-bottom: 20px;
}

.sidebar-item a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
}

.sidebar-item a:hover {
  color: #bbbbbb;
}

.content {
  margin-left: 250px;  /* Ширина бокового меню */
  padding: 20px;
  flex-grow: 1;
  background-color: #121212;
  overflow-y: auto;
}
