/* Retro-futuristic page layout styles */
.layout-container {
  min-height: 100vh;
  background-color: #f5f5dc;
  color: #006400;
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  padding: 1rem;
  box-sizing: border-box;
}

.layout-content {
  /* Main content area - terminal-like */
  background-color: rgba(0, 100, 0, 0.05);
  border: 1px solid #006400;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 20px rgba(0, 100, 0, 0.2);
}

.layout-sidebar-first,
.layout-sidebar-second {
  /* Sidebar styles - terminal panels */
  background-color: rgba(0, 100, 0, 0.03);
  border: 1px solid #004400;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 15px rgba(0, 68, 0, 0.1);
}

/* Terminal-like header */
header[role="banner"] {
  border-bottom: 2px solid #006400;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #006400;
}

/* Terminal-like footer */
footer[role="contentinfo"] {
  border-top: 2px solid #006400;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 12px;
  color: #004400;
}

/* Main content area */
main[role="main"] {
  position: relative;
}

main[role="main"]::before {
  content: '>';
  position: absolute;
  left: -1rem;
  top: 0;
  color: #006400;
  font-weight: bold;
  text-shadow: 0 0 5px #006400;
}