body {
  background-color: #f5f5f5; /* slightly darker off-white background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 20px;
}

.logo {
  font-family: 'Segoe UI', 'Poppins', 'Nunito', 'Arial', sans-serif;
  font-size: 64px;
  font-weight: 600;
}

.orange {
  color: #e25822; /* dark orange */
}

.gray {
  color: #4a4a4a; /* lighter dark gray */
}

.console-container {
  margin-top: 30px;
  display: flex;
  transition: all 0.3s ease;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.console-container.collapsed {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: none;
}

.console-container.expanded {
  width: 600px;
  height: 400px;
  cursor: default;
  background-color: #4a4a4a;
  border: 2px solid #333;
  padding: 0;
  overflow: hidden;
}

.terminal-icon {
  width: 48px;
  height: 48px;
  transition: all 0.2s ease;
  opacity: 1;
}

.console-container.collapsed:hover .terminal-icon {
  transform: scale(1.1);
  content: url('powershell-sm-orange.svg');
}

.console-container.expanded .terminal-icon {
  display: none;
}

#terminal {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
  
/* Customize xterm.js theme */
.xterm {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;
  font-size: 14px !important;
}

.xterm .xterm-viewport {
  background-color: #4a4a4a !important;
}

.xterm .xterm-screen {
  background-color: #4a4a4a !important;
}

/* Subtle scrollbar styling for xterm.js */
.xterm .xterm-viewport::-webkit-scrollbar {
  width: 8px;
}

.xterm .xterm-viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.xterm .xterm-viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.xterm .xterm-viewport::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.xterm .xterm-viewport::-webkit-scrollbar-thumb:active {
  background: rgba(255, 255, 255, 0.4);
}

/* Firefox scrollbar styling */
.xterm .xterm-viewport {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}
