/* Matches the Expert Workspace sidebar for non-home OSIUN pages. */
:root {
  --osiun-sidebar-width: 240px;
}

body.osiun-role-sidebar-active {
  padding-left: var(--osiun-sidebar-width) !important;
}

.osiun-role-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100000;
  width: var(--osiun-sidebar-width);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 22px 14px;
  color: #eaf6ff;
  background: linear-gradient(180deg, #031124, #061d38);
  border-right: 1px solid rgba(112, 196, 255, .20);
}

.osiun-role-sidebar .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: inherit;
  text-decoration: none;
}

.osiun-role-sidebar .brand-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, #1ae2ff, #1766ff, #0ce0b8, #1ae2ff);
  box-shadow: 0 0 30px rgba(39, 215, 255, .35);
}

.osiun-role-sidebar .brand b {
  display: block;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  letter-spacing: .08em;
}

.osiun-role-sidebar .brand small {
  display: block;
  margin-top: 5px;
  color: #8da9c4;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .12em;
}

.osiun-role-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.osiun-role-sidebar a.menu-item {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #d9edff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.osiun-role-sidebar a.menu-item:hover,
.osiun-role-sidebar a.menu-item.active {
  background: linear-gradient(135deg, #0b73ff, #10b7ff);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 150, 255, .20);
}

.osiun-role-sidebar .assistant-box {
  margin-top: auto;
  border: 1px solid rgba(112, 196, 255, .34);
  border-radius: 18px;
  padding: 14px;
  background: rgba(8, 35, 68, .70);
}

.osiun-role-sidebar .assistant-box b {
  display: block;
  color: #8ee6ff;
  font-size: 14px;
}

.osiun-role-sidebar .assistant-box p {
  margin: 9px 0 12px;
  color: #8da9c4;
  font-size: 12px;
  line-height: 1.4;
}

.osiun-role-sidebar .assistant-box a {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid rgba(112, 196, 255, .34);
  border-radius: 12px;
  padding: 10px 12px;
  color: #eaf6ff;
  text-decoration: none;
  background: rgba(5, 24, 48, .70);
}

.osiun-role-sidebar .status-box {
  margin-top: 14px;
  color: #6ee7a7;
  font-size: 12px;
}

.osiun-role-sidebar .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #25d47b;
  box-shadow: 0 0 14px rgba(37, 212, 123, .60);
}

@media (max-width: 1100px) {
  body.osiun-role-sidebar-active {
    padding-left: 0 !important;
    padding-top: 0 !important;
  }

  .osiun-role-sidebar {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body.osiun-role-sidebar-active {
    padding-left: 0 !important;
    padding-top: 0 !important;
  }

  .osiun-role-sidebar {
    display: none !important;
  }
}

