body {
    background-color: #000;
    color: #90EE90;  /* Light green */
    font-family: 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#terminal {
    position: relative;
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.7);  /* Slightly transparent background */
}

#output {
    margin-bottom: 20px;
}

#input-line {
    display: flex;
}

.prompt {
    color: #98FB98;  /* Pale green */
    margin-right: 5px;
}

#command-input {
    background-color: transparent;
    border: none;
    color: #98FB98;  /* Pale green */
    font-family: 'Courier New', monospace;
    font-size: 16px;
    flex-grow: 1;
    outline: none;
}

/* Softer glow effect */
#terminal, #command-input {
    text-shadow: 0 0 2px #90EE90, 0 0 5px #90EE90;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #001a00;
}

::-webkit-scrollbar-thumb {
    background: #98FB98;  /* Pale green */
}

::-webkit-scrollbar-thumb:hover {
    background: #90EE90;  /* Light green */
}

/* Styling for formatted output */
.key {
    color: #ADD8E6;  /* Light blue */
    font-weight: bold;
}

.bullet {
    color: #FAFAD2;  /* Light goldenrod yellow */
}

.header {
    color: #FFB6C1;  /* Light pink */
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
    margin-bottom: 5px;
}

#model-selection {
    position: fixed;  /* Changed from absolute to fixed */
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    color: #90EE90;  /* Light green */
    font-family: 'Courier New', monospace;
    font-size: 16px;
    z-index: 1;
}

#model-selection label {
    margin-right: 10px;
}

#model-selection select {
    background-color: #000;
    color: #90EE90;  /* Light green */
    border: 1px solid #90EE90;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    padding: 5px;
}

#home {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #90EE90;  /* Light green */
    text-align: center;
}

#home h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #90EE90, 0 0 20px #90EE90;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    color: #90EE90;  /* Light green */
    text-decoration: none;
    font-size: 1.5em;
    text-shadow: 0 0 5px #90EE90, 0 0 10px #90EE90;
    transition: color 0.3s, text-shadow 0.3s;
}

nav ul li a:hover {
    color: #FFB6C1;  /* Light pink */
    text-shadow: 0 0 10px #FFB6C1, 0 0 20px #FFB6C1;
}