@font-face {
  font-family: 'Roboto Mono';
  src: url('fonts/RobotoMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto Mono';
  src: url('fonts/RobotoMono-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body.loading-cursor, body.loading-cursor * {
  cursor: wait !important;
}

:root {
  --dark-bg-primary: #111b21;
  --dark-bg-secondary: #222e35;
  --dark-bg-tertiary: #202c33;
  --dark-bg-quaternary: #2a3942;
  --dark-text-primary: #e9edef;
  --dark-text-secondary: #667781;
  --dark-text-tertiary: #aebac1;
  --dark-border: #2a3942;
  --dark-accent: #00a884;
  --dark-accent-hover: #00c89a;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--dark-bg-secondary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

.toast-container {
  position: fixed;
  top: 2px;
  right: 4px;
  z-index: 1000;
}
.toast {
  background: #222e35;
  color: #e9edef;
  padding: 12px;
  border-radius: 8px;
  margin-top: 0;
  box-shadow: 0 2px 8px #0006;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
  min-width: 180px;
  font-size: 15px;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
.toast.success { background: #005c4b; color: #fff; }
.toast.error { background: #a00; color: #fff; }
.toast.info { background: #2a3942; color: #00a884; }
.toast.warning { background: #ff9800; color: #fff; }
