/* src/styles/desktop.css */

#ubuntu-desktop {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 24px);
  background: linear-gradient(135deg, #300a24 0%, #2c001e 100%);
  z-index: 10;
  pointer-events: none;
}

#ubuntu-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: rgba(45, 45, 45, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #555;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: "Ubuntu", sans-serif;
  font-size: 12px;
  color: #ffffff;
  z-index: 95;
}

#ubuntu-app-launcher {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
  pointer-events: auto;
}

.ubuntu-app-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.ubuntu-app-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #ubuntu-desktop,
  #ubuntu-top-bar,
  .ubuntu-app-launcher {
    display: none !important;
  }
}
