/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* ── Modern documentation theme ─────────────────────────── */
:root {
  --bg: #16181c;
  --surface: #1f2228;
  --surface-2: #262a31;
  --surface-3: #2e333c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e7e9ee;
  --text-muted: #9aa2af;
  --accent: #0979D8;
  --accent-hover: #3a9ff0;
  --orange: #FF8040;
  --header-h: 96px;
  --nav-w: 264px;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--accent-hover); }

/* Header ------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  background-color: rgba(24, 26, 31, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  color: var(--text);
  overflow: hidden;
}

.header img {
  height: 60px !important;
  width: auto;
}

.headertitle {
  position: static;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  height: auto;
  line-height: 1.1;
  color: var(--text);
}

.anchor a {
  position: absolute;
  left: 0;
  top: calc(-1 * var(--header-h) - 20px);
}

.anchor { position: relative; }

/* Sidebar navigation ------------------------------------- */
.navigation {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: var(--nav-w);
  height: calc(100% - var(--header-h));
  padding: 22px 16px;
  background-color: var(--surface);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  z-index: 7;
}

.navigation a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
}

.navibutton {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: transparent;
  margin-bottom: 6px;
  line-height: 1.2;
  padding: 11px 16px;
  text-align: left;
  font-size: 0.95em;
  opacity: 1;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.navigation a:hover .navibutton {
  background-color: var(--surface-3);
  color: var(--text);
  transform: translateX(2px);
}

/* Content ------------------------------------------------ */
.content {
  position: static;
  margin-top: var(--header-h);
  margin-left: var(--nav-w);
  margin-bottom: 52px;
  padding: 36px clamp(20px, 4vw, 60px);
  background: var(--bg);
  z-index: 5;
  color: var(--text);
  min-width: 0;
}

.content_area {
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

.content_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.content_full {
  width: 100%;
  flex: 0 0 100%;
  margin-bottom: 0;
  text-align: center;
}

.content_full img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.title {
  font-size: 1.9em;
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 14px;
  text-align: left;
  border-bottom: 2px solid var(--accent);
}

.blockheight { height: 300px; }

.content_left,
.content_right {
  flex: 1 1 320px;
  width: auto;
  float: none;
  margin: 0;
  padding: 22px 24px;
  text-align: left;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.content_left:hover,
.content_right:hover {
  transform: translateY(-2px);
  border-color: rgba(9, 121, 216, 0.5);
}

.content_left p[style],
.content_right p[style] {
  color: var(--accent-hover);
  font-size: 1.05em;
}

/* Tables ------------------------------------------------- */
.content table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  margin: 0 auto;
}

.content th {
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

/* Changelog ---------------------------------------------- */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.cl-major {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cl-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 1.15em;
  font-weight: 500;
  color: var(--text);
  user-select: none;
  transition: background 0.18s ease;
}

.cl-summary::-webkit-details-marker {
  display: none;
}

.cl-summary:hover {
  background: var(--surface-2);
}

.cl-summary::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid var(--accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: transform 0.2s ease;
}

.cl-major[open] > .cl-summary::before {
  transform: rotate(90deg);
}

.cl-major[open] > .cl-summary {
  border-bottom: 1px solid var(--border);
}

.cl-count {
  margin-left: auto;
  font-size: 0.72em;
  font-weight: 400;
  color: var(--text-muted);
}

.cl-group {
  display: flex;
  flex-direction: column;
  padding: 6px 22px 16px;
}

.changelog-entry {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 0;
  transition: none;
}

.changelog-entry + .changelog-entry {
  border-top: 1px solid var(--border);
}

.changelog-entry:hover {
  transform: none;
}

.changelog-head {
  flex: 0 0 102px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 3px;
  margin-bottom: 0;
  padding-right: 16px;
  border-right: 2px solid var(--border);
}

.changelog-entry.major .changelog-head {
  border-right-color: var(--accent);
}

.changelog-date {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.85em;
  white-space: nowrap;
}

.changelog-ver {
  color: var(--accent-hover);
  font-weight: 600;
  font-size: 0.9em;
  white-space: nowrap;
}

.changelog-entry ul {
  margin: 0;
  padding-left: 18px;
  flex: 1 1 auto;
}

.changelog-entry li {
  margin-bottom: 5px;
}

.changelog-entry li:last-child {
  margin-bottom: 0;
}

.changelog-entry code {
  background: var(--surface-3);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 0.9em;
}

.changelog-body {
  flex: 1 1 auto;
  min-width: 0;
}

.cl-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.cl-feature {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 13px 18px;
}

.cl-feature-title {
  font-weight: 600;
  font-size: 1.05em;
  color: var(--accent-hover);
  margin-bottom: 4px;
}

.cl-feature p {
  margin: 0;
  color: var(--text);
}

.cl-other-title {
  font-weight: 600;
  font-size: 0.78em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.changelog-body > ul + .cl-other-title {
  margin-top: 16px;
}

.changelog-body > ul {
  margin: 0;
  padding-left: 18px;
}

.content ul {
  padding-left: 22px;
}

.content li {
  margin-bottom: 6px;
}

/* Footer ------------------------------------------------- */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 36px;
  padding: 0 16px;
  background-color: rgba(24, 26, 31, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 36px;
  z-index: 10;
  text-align: center;
  font-size: 0.85em;
}

/* Responsive --------------------------------------------- */
@media (max-width: 820px) {
  .navigation {
    position: static;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
  }
  .navigation a { flex: 1 1 auto; }
  .navibutton { text-align: center; }
  .content {
    margin-left: 0;
    padding: 24px 16px;
  }
}

.deskball {
  border-radius: 50%;
  opacity: 1.0;
 }
 
 .occupied {
  width: 40px;
  height: 40px;
  background-color:rgba(0, 0, 255, 0.7);
 }
 
 .occupiedldap {
     width: 40px;
     height: 40px;
     background-color:rgba(0, 0, 255, 0.7);
    }
 
 .shareddesk {
     width: 40px;
     height: 40px;
     background-color:rgba(143, 38, 162, 0.7);
 }
 
 .free {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 200, 0, 0.7);
 }
 
 .hotseat {
  width: 40px;
  height: 40px;
  background-color: rgba(189, 39, 42, 0.7);
 }
 
 .newdesk {
     width: 40px;
     height: 40px;
     background-color: rgba(189, 39, 42, 0.7);
    }
 
 .newmap {
     width: 100px;
     height: 100px;
     background-color: rgba(189, 39, 42, 0.7);
 }
 
 .blocked {
  width: 40px;
  height: 40px;
  background-color: rgba(180, 180, 180, 0.7);
 }
 
 .meeting {
  width: 50px;
  height: 50px;
  background-color: rgba(137, 26, 183, 0.7);
  background-image: url("images/meeting.png");
  background-size: cover;
 }
 
 .meeting_indicator {
     width: 50px;
     height: 25px;
     border-radius: 0px 0px 25px 25px;
     background-color: transparent;
 }
 
 .printer {
  width: 36px;
  height: 36px;
  background-color: rgba(50,50,50,0.7);
  background-image: url("images/printer.png");
  background-size: cover;
 }
 
 .firstaid {
  width: 36px;
  height: 36px;
  background-color: rgba(220,50,50,0.7);
  background-image: url("images/firstaid.png");
  background-size: cover;
 }
 
 .restroom {
  width: 50px;
  height: 50px;
  background-color: rgba(78, 81, 100, 0.7);
  background-image: url("images/restroom.png");
  background-size: cover;
 }
 
 .food {
  width: 36px;
  height: 36px;
  background-color: rgba(215, 125, 40, 0.7);
  background-image: url("images/food.png");
  background-size: cover;
 }
 
 .service {
  width: 36px;
  height: 36px;
  background-color: rgba(70, 190, 190, 0.7);
  background-image: url("images/service.png");
  background-size: cover;
 }
 
 .exit {
  width: 50px;
  height: 50px;
  background-color: rgba(84, 185, 72, 0.7);
  background-image: url("images/exit.png");
  background-size: cover;
 }
 
 .keycardlock {
  width: 36px;
  height: 36px;
  background-color: rgba(240, 220, 0, 0.7);
  background-image: url("images/keycardlock.png");
  background-size: cover;
 }
 
 .keylock {
  width: 36px;
  height: 36px;
  background-color: rgba(240, 220, 0, 0.7);
  background-image: url("images/keylock.png");
  background-size: cover;
 }
 
 .floor {
  width: 100px;
  height: 100px;
  background-color: #d017a8b3;
 }