/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Ubuntu, Cantarell, sans-serif;
  overflow: hidden;
}

/* ================= TOP BAR ================= */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4vh;
  width: 100%;
  background-color: #131313;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  font-size: 0.85rem;
  z-index: 100;
}

.top-left,
.top-center,
.top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-right i {
  cursor: pointer;
  transition: color 0.2s ease;
}

.top-right i:hover {
  color: #f57c00;
}

/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 4vh;
  left: 0;
  width: 4vw;
  min-width: 56px;
  height: 96vh;
  background-color: #131313;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
  z-index: 90;
}

.main-icons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.more-icons {
  margin-top: auto;
  padding-bottom: 1rem;
}

.sidebar i {
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.sidebar i:hover {
  color: #f57c00;
  transform: scale(1.15);
}

.sidebar i.active {
  color: #f57c00;
}

/* ================= CONTENT ================= */
.content {
  position: fixed;
  top: 4vh;
  left: 4vw;
  width: 96vw;
  height: 96vh;
  background-color: #1a1a1a;
}

.content iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #1a1a1a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .sidebar {
    width: 56px;
  }

  .content {
    left: 56px;
    width: calc(100vw - 56px);
  }
}
