/* Custom 90s Desktop Styles */
/* Using system fonts instead of Google Fonts to avoid loading issues */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'MS Sans Serif', monospace, system-ui;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: default;
  font-size: 11px;
}

/* Classic 90s button styling */
button {
  font-family: inherit;
  font-size: 11px;
}

/* Window drag cursor */
.cursor-move {
  cursor: move;
}

/* Prevent text selection during drag */
.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Classic 90s inset border effect */
.inset-border {
  border: 2px solid;
  border-color: #808080 #c0c0c0 #c0c0c0 #808080;
}

/* Classic 90s raised border effect */
.raised-border {
  border: 2px solid;
  border-color: #c0c0c0 #808080 #808080 #c0c0c0;
}

/* Pixelated image rendering for retro feel */
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* Custom scrollbar for 90s feel */
::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: #c0c0c0;
  border: 1px inset #c0c0c0;
}

::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
}

::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

/* Menu hover effects */
.menu-item:hover {
  background-color: #0080ff;
  color: white;
}

/* Classic button press effect */
button:active {
  border-color: #808080 #c0c0c0 #c0c0c0 #808080 !important;
  transform: translate(1px, 1px);
}

/* Window shadow effect */
.window-shadow {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Desktop icon text shadow for readability */
.desktop-icon-text {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8);
}

/* Additional 90s styling */
.window-title {
  font-weight: bold;
  font-size: 11px;
}

.menu-bar {
  font-size: 11px;
}

.status-bar {
  font-size: 10px;
}