
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html , body{
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    min-width: 100vw;
    color: #e0e0e0 !important;
    background-color: #2e2e2e;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin: 30px;
}

.container{
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    background: #333;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,4);    
}

h1{
    font-size: 36px;
    font-weight: 600px;
    margin-bottom: 10px;
    text-align: center;
    margin-bottom: 15px;
    color:#fff;
}

#eitor-wrapper{
    border: 1px solid #444;
    border-radius: 5px;
    overflow: hidden;
    color: #4a4545;
    padding: 10px;
}

#run-btn,#submit-inputs-btn{
    width: 100%;
    background: #0070f3;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px ;
    border-radius: 5px;
    transition: background 0.2s ease;
}

#run-btn:hover,#submit-inputs-btn:hover{
    background: #0059c9;

}

.output-container{
    margin-top: 15px;
    border-radius: 5px;
    padding: 20px;
    font-size: 14px;
    background: #121212;
    color: #fff;
    overflow-y: auto;
    max-height: 200px;
    border: 1px solid #444;
    white-space: pre-wrap;
    word-wrap: break-word;
    color:#e0e0e0;
    max-height: 360px;
    overflow-y: auto;
}

.CodeMirror{
    height: 260px;
    font-size: 14px;
    scrollbar-width: thin;
    scrollbar-color: #444 #2e2e2e;

}
.CodeMirror-vscrollbar div,
.CodeMirror-hscrollbar div {
    background-color: #444;
    border-radius: 10px;
}
.input-group,#output{
    display: flex;
    flex-direction: column;
    gap: 14px;
    white-space: pre-wrap;
}
.user-input{
    padding: 8px;
    font-size:16px;
    border: 1px solid #444;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
    background:#333;
    color: #e0e0e0;
    margin-top: 4px;
}

.user-input{
    border-color:#0070f3 ;
}
.user-input:focus{
    border-color:#0070f3 ;
}

.inputs-container{
    display: flex;
    flex-direction: column;
    gap:16px;
    align-items: center;
}