.input-area {
    display: flex;
    border: 1px solid #333;
    padding: 2px;
    background-color: #1a1a1a;
    margin: 10px;
    margin-top: 0;
    transition: all 2s ease;
}

input[type="text"] {
    flex-grow: 1;
    background-color: #1a1a1a;
    color: #aaa;
    border: none;
    padding: 12px;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    transition: all 2s ease;
}

input[type="text"]::placeholder {
    color: #444;
    font-style: italic;
}

button {
    background-color: #2a2a2a;
    color: #888;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 1px;
}

button:hover {
    background-color: #333;
    color: #aaa;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}