@import url(/files/aos/css/themes.css);

body {
  font-family: "Lexend", sans-serif;
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
  overflow: hidden;
  color: var(--text-primary);
  touch-action: none;
  cursor: url(/files/aos/images/small.png), default !important;
}

i {
  color: var(--text-primary);
}

body * {
  cursor: inherit;
}

a,
button,
.desktop-icon,
.taskbar-item,
.window-control-btn,
.start-menu-item,
.profile-menu-item,
.theme-option,
.wallpaper-option,
.app-gallery-item,
.notepad-btn,
.trash-action-btn,
.install-app-btn,
.wizard-nav button {
  cursor: url(/files/aos/images/smallf.png), pointer !important;
}

body {
  background-image: url("/files/aos/images/defaults/reused.jpg");
}

.acrylic {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background-color: rgba(32, 33, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.acrylic-light {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background-color: rgba(45, 46, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.window {
  min-width: 400px;
  min-height: 300px;
  width: 800px;
  height: 500px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5),
    0 5px 10px -5px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  position: absolute;
  display: flex;
  flex-direction: column;
  resize: both;
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.window.minimizing {
  transform: scale(0.9);
  opacity: 0;
}

.window.maximizing {
  transition: all 0.3s ease;
}

.window-header {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  cursor: grab;
  flex-shrink: 0;
  transition: ease-in-out 0.2s;
  background-color: var(--darker-bg);
  border-bottom: var(--dark-bg);
}

.window-header:active {
  cursor: grabbing;
}

.window-header:hover {
  opacity: 0.5;
}

.window-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
  user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-title-icon {
  width: 25px;
  height: 25px;
  border-radius: 16px;
}

.window-controls {
  display: flex;
  height: 100%;
}

.window-control-btn {
  width: 46px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.window-control-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.window-control-btn.close-btn:hover {
  background-color: #e81123;
  color: white;
}

.window-content {
  flex-grow: 1;
  background-color: var(--card-bg);
  color: var(--text-primary);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow-y: auto;
  transition: opacity 0.2s ease;
}

.window-content.iframe-mode {
  padding: 0;
  overflow: hidden;
}

.desktop-icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 80px);
  grid-auto-rows: 90px;
  gap: 20px;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  height: 90px;
  padding: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
  justify-content: center;
}

.desktop-icon:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.desktop-icon:active {
  transform: translateY(0);
}

.desktop-icon-img {
  width: 50px;
  height: 50px;
  border: 3px solid var(--accent-color);
  margin-bottom: 6px;
  transition: transform 0.2s ease;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.desktop-icon-label {
  color: var(--text-primary);
  font-size: 0.75rem;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  word-break: break-word;
  line-height: 1.2;
  max-width: 100%;
}

#start-menu {
  position: absolute;
  bottom: 50px;
  left: 10px;
  width: 400px;
  height: 500px;
  border-radius: 12px;
  z-index: 10000;
  display: none;
  flex-direction: column;
  transform-origin: bottom left;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#start-menu.showing {
  animation: scaleIn 0.2s ease forwards;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#start-menu-app-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 12px;
}

.start-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--text-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.start-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

#taskbar {
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 1000;
}

#taskbar.left-positioned {
  flex-direction: column;
  justify-content: space-between;
  width: 70px;
  height: 100vh;
  padding: 10px 0;
}

#taskbar.left-positioned > .flex:first-child {

  order: 1;
}

#taskbar.left-positioned #taskbar-apps {

  order: 2;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

#taskbar.left-positioned > .flex:last-child {

  order: 3;
  flex-direction: column;
  gap: 5px;
}

#taskbar.left-positioned #clock {
  font-size: 11px;
  padding: 2px;
  text-align: center;
}

#taskbar.right-positioned {
  flex-direction: column;
  justify-content: space-between;
  width: 70px;
  height: 100vh;
  padding: 10px 0;
}

#taskbar.right-positioned > .flex:first-child {

  order: 1;
}

#taskbar.right-positioned #taskbar-apps {

  order: 2;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

#taskbar.right-positioned > .flex:last-child {

  order: 3;
  flex-direction: column;
  gap: 5px;
}

#taskbar.right-positioned #clock {
  font-size: 11px;
  padding: 2px;
  text-align: center;
}

#taskbar.top-positioned {
  flex-direction: row;
  justify-content: space-between;
  width: 100vw;
  height: 48px;
}

#taskbar.top-positioned #taskbar-apps {
  flex-grow: 1;
  justify-content: center;
  gap: 5px;
}

#taskbar.top-positioned #clock {
  font-size: 12px;
  padding: 3px 8px;
}

#taskbar:not(.left-positioned):not(.right-positioned):not(.top-positioned) {
  flex-direction: row;
  justify-content: space-between;
  width: 100vw;
  height: 48px;
}

#taskbar:not(.left-positioned):not(.right-positioned):not(.top-positioned)
  #taskbar-apps {
  flex-grow: 1;
  justify-content: center;
  gap: 5px;
}

#taskbar:not(.left-positioned):not(.right-positioned):not(.top-positioned)
  #clock {
  font-size: 12px;
  padding: 3px 8px;
}

.profile-picture {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.start-menu-item-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 4px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

#taskbar {
  display: flex;
  height: 48px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 0 8px;
  align-items: center;
  transition: all 0.3s ease;
  background-color: var(--dark-bg);
}

#taskbar.left-positioned {
  width: 60px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
}

#taskbar.right-positioned {
  width: 60px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
}

#taskbar.top-positioned {
  top: 0;
  bottom: auto;
}

#taskbar-apps {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 8px;
  overflow-x: auto;
}

#taskbar.left-positioned #taskbar-apps,
#taskbar.right-positioned #taskbar-apps {
  flex-direction: column;
  margin: 8px 0;
  overflow-y: auto;
}

.taskbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}

.taskbar-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.taskbar-item.active {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.taskbar-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  object-fit: cover;
}

.taskbar-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  position: relative;
}

.taskbar-profile:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.profile-picture {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#profile-menu {
  position: absolute;
  bottom: 50px;
  right: 10px;
  width: 280px;
  border-radius: 12px;
  z-index: 10000;
  display: none;
  flex-direction: column;
  transform-origin: bottom right;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  background-color: var(--dark-bg);
}

#profile-menu.showing {
  animation: scaleIn 0.2s ease forwards;
}

.profile-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.profile-menu-picture {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-menu-info {
  flex-grow: 1;
}

.profile-menu-name {
  font-weight: 500;
  font-size: 1rem;
}

#setup-wizard {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 30000;
  transition: opacity 0.5s ease;
}

.wizard-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.wizard-content {
  background: rgba(32, 33, 36, 0.95);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-step {
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
}

.wizard-step.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.wizard-step.exiting {
  opacity: 0;
  transform: translateY(-20px);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.wizard-image {
  max-height: 20vw;
  max-width: 50vw;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 20px;
  display: block;
}

#lock-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  z-index: 25000;
  transition: opacity 0.5s ease;
}

.lock-screen-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.3);
}

.lock-screen-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(32, 33, 36, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  width: 90%;
}

.lock-screen-time {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.lock-screen-date {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.lock-screen-welcome {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.lock-screen-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.lock-screen-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.lock-screen-username {
  font-size: 1.5rem;
  font-weight: 500;
}

.lock-screen-hint {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
}

.lock-screen-splash {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.app-gallery-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--text-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-gallery-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.app-gallery-item-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 4px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--accent-color);
  width: 0%;
  transition: width 0.3s ease;
}

.theme-option {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.theme-option:hover {
  transform: scale(1.05);
}

.theme-option.selected {
  border-color: var(--accent-color);
}

.theme-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.theme-preview-header {
  height: 10px;
  width: 100%;
}

.theme-preview-content {
  flex-grow: 1;
  width: 100%;
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.terminal {
  background-color: #0b0c10;
  color: #f5f5f5;
  font-family: "Fira Code", monospace;
  font-size: 14px;
  padding: 20px;
  height: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.terminal-output {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

.terminal-line {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.terminal-prompt {
  color: #00ff99;
  font-weight: bold;
  margin-right: 6px;
  flex-shrink: 0;
}

.terminal-command {
  color: #ffff00;
  word-break: break-word;
}

.terminal-output-text {
  color: #cccccc;
  margin-left: 24px;
  white-space: pre-wrap;
}

.terminal-error {
  color: #ff5555;
  margin-left: 24px;
  white-space: pre-wrap;
}

.terminal-input {
  background: transparent;
  border: none;
  color: #f5f5f5;
  font-family: "Fira Code", monospace;
  font-size: 14px;
  outline: none;
  width: 100%;
  margin-top: 8px;
}

.terminal-input::placeholder {
  color: #888888;
}

.user-input {
  width: 100%;
  background-color: var(--card-bg);
  border: 1px solid var(--text-primary);
  border-radius: 0.375rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-primary, #ffffff);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.user-input:focus {
  box-shadow: 0 0 0 2px var(--accent-color, #3b82f6);
  border-color: var(--accent-color, #3b82f6);
}



@media (max-width: 768px) {
  .window {
    min-width: 90vw;
    min-height: 60vh;
    width: 90vw;
    height: 70vh;
  }

  #start-menu {
    width: 90vw;
    height: 70vh;
  }

  .desktop-icon {
    width: 70px;
  }

  .desktop-icon-img {
    width: 40px;
    height: 40px;
  }

  .wizard-image {
    max-width: 90vw;
  }

  .lock-screen-time {
    font-size: 3rem;
  }
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.notepad-toolbar {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(45, 46, 48, 0.9);
}

.notepad-btn {
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s;
}

.notepad-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.notepad-textarea {
  width: 100%;
  height: calc(100% - 50px);
  background-color: var(--card-bg);
  color: var(--text-primary);
  border: none;
  outline: none;
  resize: none;
  padding: 12px;
  font-family: "Inter", monospace;
  font-size: 14px;
  line-height: 1.5;
}

.trash-bin {
  position: relative;
}

.trash-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #e53e3e;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trash-content {
  max-height: 300px;
  overflow-y: auto;
}

.trash-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 4px;
  background-color: rgba(255, 255, 255, 0.05);
}

.trash-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.trash-item-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trash-item-actions {
  display: flex;
  gap: 4px;
}

.trash-action-btn {
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 12px;
}

.trash-action-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.trash-empty {
  padding: 16px;
  text-align: center;
  color: var(--text-secondary);
}

#logout-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg, 
    var(--dark-bg) 0%, 
    var(--darker-bg) 100%
  );
  z-index: 35000;
  transition: opacity 0.5s ease;
  color: var(--text-primary);
}

.logout-content {
  text-align: center;
  color: white;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  width: 90%;
}

.logout-message {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.logout-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.livepaper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  padding: 16px;
}

.livepaper-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}

.livepaper-item:hover {
  transform: scale(1.05);
}

.livepaper-item.selected {
  border-color: var(--accent-color);
}

.livepaper-thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.livepaper-name {
  padding: 8px;
  text-align: center;
  font-size: 0.875rem;
  background-color: rgba(0, 0, 0, 0.5);
}

body.reduce-animation * {
  transition: none !important;
  animation: none !important;
}

.skip-btn {
  background-color: #707070;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: ease-in-out 0.2s;
  cursor: url(/files/aos/images/smallf.png), pointer !important;
}

.skip-btn:hover {
  opacity: 0.5;
}

.file-upload-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.file-upload-btn {
  background-color: var(--accent-color);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: ease-in-out 0.2s;
  cursor: url(/files/aos/images/smallf.png), pointer !important;
}

.file-upload-btn:hover {
  opacity: 0.5;
}

.file-upload-input {
  display: none;
}

.file-upload-preview {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.neofetch-container {
  display: flex;
  align-items: flex-start; 
  gap: 10px; 
  font-family: monospace;
  color: #00ff00;
  margin: 0;
  padding: 0;
}

.ascii-art {
  white-space: pre;
  line-height: 1;
  font-size: 8px; 
  margin: 0;
  padding: 0;
}

.system-info {
  display: flex;
  flex-direction: column;
  gap: 1px; 
  font-size: 10px; 
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.system-info .info-line .label {
  display: inline-block;
  width: 60px; 
  color: #00ff00;
}

.color-bars {
  display: flex;
  margin-top: 2px;
  gap: 0; 
  overflow: hidden;
  border-radius: 4px; 
}

.color-bar {
  flex: 1; 
  height: 10px; 
  margin: 0; 
}

.color-bar:first-child {
  border-radius: 4px 0 0 4px; 
}

.color-bar:last-child {
  border-radius: 0 4px 4px 0; 
}

::selection {
    background: var(--text-primary);
    color: var(--accent-color);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg); 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color); 
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #a496c8; 
    transform: scale(1.1); 
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--darker-bg);
}