/* ==================== THEME SELECT ==================== */
#theme-select {
  background: black;        /* Set select background to black */
  color: #FFF;              /* Text color white */
  border: 1px solid;        /* Simple border */
  font-family: monospace;   /* Monospace font for consistency */
  margin-top: 1em;          /* Space above select box */
  padding: 0.25em;          /* Inner spacing */
}


/* Label for theme select */
label[for="theme-select"] {
 /* color: #00ff00;*/
  color:#000;
  font-family: monospace;
}
/* ==================== TAGLINE ==================== */
.tagline {
  margin-left: 2em; /* or try 3em, 30px, etc. for more/less */
  font-style: italic;
  font-weight: bold;
}
/* ==================== MAC-LIKE MENU BAR ==================== */
#mac-menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;/* Standard Mac menu bar height */
  background: #e8e8e8;
  display: flex;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 13px;
  user-select: none; /* Prevent text selection */
  padding: 0 12px;
  color: #000;
  border-bottom: 1px solid #c0c0c0;
  box-shadow: inset 0 -1px 0 #fff;
  z-index: 1000;/* Always on top */
}
/* Container for menu items */
.menu-items {
  display: flex;
  align-items: center;
}
/* Individual menu container */
.menu {
  position: relative;
  margin-right: 15px;
}
/* Apple logo style */
.apple-logo {
  font-family: "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  margin-right: 20px;
  font-size: 16px;
  cursor: default;
}
/* Menu button style */
.menu-button {
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  padding: 2px 6px;
  color: black;
  font-weight: 500;
  user-select: none;
}
/* Hover and focus state for buttons */
.menu-button:hover,
.menu-button:focus {
  background-color: #d0d0d0;
  outline: none;
  border-radius: 3px;
}
/* Dropdown menu style */
.dropdown {
  display: none;    /* Hidden by default */
  position: absolute;
  top: 28px;  /* Below menu bar */
  left: 0;
  background: white;
  border: 1px solid #c0c0c0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  min-width: 140px;
  z-index: 2000; /* Above other elements */
  font-size: 13px;
}
/* Individual dropdown items */
.dropdown-item {
  padding: 6px 12px;
  cursor: pointer;
  white-space: nowrap;
}

/* Show dropdown on .open class */
.menu.open .dropdown {
  display: block;
}

/*

body {
  background: black;
  color: #00ff00;
  font-family: monospace;
  margin: 0;
  padding: 1em;
}
 */

.command {
  font-weight: bold;
}
 /* color: #ffcc00;/*
}

body {
  margin: 0;
  background: #000;
  color: #00ff00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  padding: 20px;
}
/*#terminal {
  max-width: 80ch;
  margin: auto;
  white-space: pre-wrap;
  text-align: left;
  margin-left: 30px;
}
 */

/* Terminal container */
.terminal {
  max-width: 800px;
  margin: 0 auto;
  margin-top:50px;
}
/* Header text */
.header {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  border-bottom: 1px solid ;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

/* Command input field */
input#cmd {
  border: 2px solid;  /* green border */
  padding: 0.25em 0.5em;
  font-family: monospace;
  font-size: 1em;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;   /* subtle rounded corners */
}

#page-header {
  font-size: 2rem;          /* Large text size */
  font-weight: bold;        /* Bold text */
  padding-bottom: 0.3em;    /* Space below the text */
  border-bottom: 4px solid;/* Green line underline */
  margin-bottom: 1em;       /* Space below the header */
  color: #006400;           /* Dark green text color (optional) */
  text-align: center;       /* Center the text (optional) */
  font-family: Arial, sans-serif; /* Clean font */
}
/* Terminal output styling */
#output {
  white-space: pre-wrap;/* Preserve spacing and line breaks */
}

/* Welcome message */
#welcome-message{
     max-width: 800px;
  margin: 0 auto;
    
}

/* Blog links container */
bloglinks{
     max-width: 800px;
  margin: 0 auto;
              /* bright green */
}
#bloglinks a
{
  text-decoration: underline;
    color:black;

}
/* Output paragraphs */

.output p {
  margin: 0;
  line-height: 1.5;
  white-space: pre-wrap;
}
/* Prompt spacing */
.prompt {
  margin-right: 10px;
}
form {
  margin-top: 0; /* removes extra space */
}
.command {
  /*color: #ffcc00;*/
  font-weight: bold;
}
/*
form input {
  background: black;
  color: #00ff00;
  font-family: monospace;
  border: none;
  outline: none;
  width: 100%;
  margin-left: 0.5ch;  space after > 
}*/

form input {
  display: flex;
  align-items: center;
  margin-top: 10px;
  border: 1px solid;
  padding: 8px;
}
/* Clickable text style */
.clickable {
    /* green */
  text-decoration: underline;
  cursor: pointer;
}

.clickable:hover {
  color: #ffff00;   /* yellow */
}

