#writing-tab {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#poem-textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
}

#writing-controls {
    margin-top: 15px;
}

#writing-controls .control-btn {
    background-color: #5cb85c;
    padding: 10px 20px;
    margin: 5px;
    color: white;
    cursor: pointer;
}

#writing-controls .control-btn:hover {
    background-color: #4cae4c;
}

#saved-poems {
    margin-top: 20px;
    padding: 10px;
    background-color: #e2e2e2;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: scroll;
}

.saved-poem {
    padding: 5px;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 10px;
}

#console-output {
    margin-top: 20px;
    background-color: #282828;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

#console-text {
    font-family: monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.rainbow-text {
    font-weight: bold;
    font-size: 1.1rem;
    display: inline;
}
