/* Gemensam sidomeny för Deep Thought */

.admin-sidebar {
  width: 220px;
  min-height: 100vh;
  background: #ffffff;
  border-right: 1px solid #e8e8e8;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.admin-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a2e;
}

.admin-sidebar__brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFA047;
  display: inline-block;
}

.admin-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.admin-sidebar__section {
  margin-bottom: 4px;
}

.admin-sidebar__section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #b0b0b0;
  padding: 16px 20px 4px;
  text-transform: uppercase;
}

.admin-sidebar__item {
  display: block;
  padding: 10px 20px;
  color: #888;
  text-decoration: none;
  font-size: 13px;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}

.admin-sidebar__item:hover {
  color: #1a1a2e;
  background: #fafafa;
}

.admin-sidebar__item--active {
  background: #fff5eb;
  color: #e8821a;
  border-left-color: #FF9F46;
  font-weight: 500;
}

.admin-sidebar__footer {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  color: #ccc;
}

@media (max-width: 768px) {
  .admin-sidebar {
    display: none;
  }
}
