:root {
  --bg: #f7f8fa;
  --line: #e6e8ee;
  --muted: #9aa3b2;
  --text: #2f3747;
  --primary: #0ec6a9;
  --link: #337ab7;
  --input-bg: #fcfcfd;
}
 
* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
}

.app { display: flex; height: 100vh; min-height: 720px; }

.sidebar {
  width: 240px;
  border-right: 1px solid var(--line);
  background: #fbfbfc;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 16px 14px;
  font-weight: 700;
  font-size: 15px;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

.side-group-title {
  font-size: 12px;
  color: var(--muted);
  padding: 14px 14px 6px;
  text-transform: uppercase;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #454f63;
  padding: 8px 14px; 
  cursor: pointer;
  text-decoration: none;
}
 
.side-item:hover { background: #f3f5f9; }
 
.syn_sidebar-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}

.syn_sidebar-navigation__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
  position: relative;
} 

.syn_sidebar-navigation__item-row:hover {
  background: #f3f5f9;
}

.syn_sidebar-navigation__item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #454f63;
  padding: 8px 14px;
  text-decoration: none;
  flex: 1;
  min-width: 0;
  padding-right: 34px;
}

.syn_sidebar-navigation__item-link:hover {
  background: #f3f5f9;
}

.syn_sidebar-navigation__item--active > .syn_sidebar-navigation__item-link,
.syn_sidebar-navigation__item--active > .syn_sidebar-navigation__item-row .syn_sidebar-navigation__item-link {
  background: #eef3ff;
  color: #2f4f9f;
  font-weight: 600;
} 

.syn_sidebar-navigation__item--active .bullet {
  background: #4f73d9;
}

.syn_sidebar-navigation__item-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.syn_sidebar-navigation__item-suffix {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(8px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.syn_sidebar-navigation__item-row:hover .syn_sidebar-navigation__item-suffix,
.syn_sidebar-navigation__item-row:focus-within .syn_sidebar-navigation__item-suffix {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}
 
.syn_sidebar-navigation__item-suffix-new-button {
  width: 20px;
  height: 20px;
  border: none;
  color: #6b7488;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.syn_sidebar-navigation__item-suffix-new-button:hover {
  color: #4c556a;
}

.bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8cfdb;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.topbar {
  height: 58px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.topbar .left-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.topbar .actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 7px 12px;
  font-size: 13px;
  color: #3f4a5f;
  text-decoration: none;
  display: inline-block;
}

.btn.dark {
  background: #1f2330;
  color: #fff;
  border-color: #1f2330;
} 

.btn.outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--link);
} 

.btn.outline:hover {
  background: #f7f8fb;
}

.user-name-badge {
  min-height: 30px;
  max-width: 360px;
  border-radius: 15px;
  background: #e8f0ff;
  color: #4f73d9;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
}

.user-name-badge:hover {
  background: #dfeaff;
}
