.tefagoo-container {
    font-family: Arial, sans-serif;
    color: #fff;
    background: #121212;
    padding: 20px;
    border-radius: 10px;
}

.start-screen {
    text-align: center;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 8px;
}
.start-screen h2 {
    margin-bottom: 20px;
}
.start-screen select, .start-screen button {
    padding: 10px;
    margin: 10px;
    border: none;
    border-radius: 6px;
    background: #333;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.editor-screen {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.toolbar {
    background: #111;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.toolbar .title {
    font-weight: bold;
}
.toolbar .tools button {
    margin-left: 5px;
    padding: 6px 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.toolbar .tools button:hover {
    background: #444;
}
#editor {
    height: 300px;
    width: 100%;
}
#code-output {
    width: 100%;
    height: 250px;
    border: none;
    background: #fff;
}
