/* Retro Windows 98 Alert Styles */
#retro-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.alert-window {
  width: 300px;
  background: #c0c0c0;
  border: 2px outset #ffffff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 2px;
}

.alert-title-bar {
  background: linear-gradient(90deg, #000080, #1084d0);
  color: white;
  padding: 3px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 12px;
}

.alert-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.alert-btn {
  min-width: 80px;
  padding: 4px 10px;
  border: 2px outset #ffffff;
  background: #c0c0c0;
  font-weight: bold;
  cursor: pointer;
}
.alert-btn:active {
  border: 2px inset #ffffff;
}
