/* Reusable Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(var(--glass-blur, 12px));
  -webkit-backdrop-filter: blur(var(--glass-blur, 12px));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg, 20px);
  margin: 10px 20px 0 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  position: relative;
}

.taskbar-left,
.taskbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.taskbar-left {
  gap: 2px;
}

.sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 0px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}

.sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-toggle:active {
  transform: scale(0.92);
  background: rgba(255, 255, 255, 0.12);
}

.sidebar-toggle svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.start-button {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.1s ease;
}

.start-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.start-button:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.15);
}

.start-button img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.start-button span {
  font-weight: 600;
  font-size: 16px;
}

.taskbar-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.1s ease;
}

.taskbar-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.taskbar-icon:active {
  transform: scale(0.92);
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  header {
    padding: 8px 12px;
    min-height: 48px;
    margin: 10px 12px 0 12px;
  }

  .start-button span {
    display: none;
  }

  .taskbar-right {
    gap: 8px;
  }
}
