* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #2b2b2b; 
    color: #e0e0e0; 
}

.container {
    width: 100%;
    height: 100vh;
    padding: 20px;
    display: flex;
    gap: 15px; 
    
}

.left, .right {
    flex-basis: 50%;
    padding: 15px;
    border-radius: 8px; 
}
.left label,.right label{
    background-color: #Ffd700;
}
textarea {
    width: 100%;
    height: 30%;
    background-color: rgb(109,109,109); ; 
    padding: 15px 20px;
    color: white;
    border: 1px solid #444; 
    border-radius: 6px;
    outline: none;
    resize: none; 
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}


iframe {
    width: 100%;
    height: 100%;
    background: rgb(109,109,109);
    border-radius: 6px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
    border: none;
}

label {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 35px;
    padding: 0 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    font-weight: 600;
}

label i {
    margin-right: 10px;
    font-size: 18px;
}

textarea::-webkit-scrollbar {
    width: 8px;
}
textarea::-webkit-scrollbar-thumb {
    background: #555; 
    border-radius: 4px;
}
textarea::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.output{
    background-color: rgb(109,109,109);
}
