/* dev-override.css — Development environment indicator
   Load after weavermere.css on dev.alcestra.com only
   Version: 1.0 | Date: 2026-06-27 */

html, body {
  background: #1a3a1a;
}

.tartan {
  background-color: #1a3a1a;
}

.main {
  background: linear-gradient(135deg, #1a3a1a 0%, #2a4a2a 100%);
}

/* Dev banner */
body::after {
  content: 'DEV';
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 9999;
  background: rgba(40,100,40,0.85);
  color: #a8d8a8;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border: 1px solid rgba(120,180,120,0.4);
  pointer-events: none;
}
