::-webkit-scrollbar {
width: 15px;
}

::-webkit-scrollbar-thumb {
background: orange; 
border-radius: 10px;
}

body {
font-family: monospace;
font-size: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.HEspecialtag {
font-family: monospace;
font-size: 15px;
}

button {
background: linear-gradient(135deg, #A5D6A7, #81C784);
border: none;
color: black;
padding: 12px 24px;
margin: 6px;
border-radius: 12px;
font-size: 16px;
font-family: monospace;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
background: linear-gradient(135deg, #A5D6A7, #81C784);
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
transform: scale(1.05);
}

#fullScreenButton {
position: absolute !important;
top: 10px !important;
right: 10px !important;
padding: 6px 12px !important;
font-size: 20px !important;
border: none !important;
background: #e0e0e0 !important;
color: #333 !important;
border-radius: 8px !important;
cursor: pointer !important;
transition: all 0.2s ease !important;
}

#consoleOutput {
white-space: pre;
font-family: monospace;
font-size: 10px;
width: calc(1500 / 1536 * 100vw);
height: calc(150 / 695 * 100vh);
padding: 10px;
overflow-y: auto;
overflow-x: auto;
background: #1a1a1a;
color: #0f0;
}

#code {
white-space: pre;
font-family: monospace;
font-size: 15px;
line-height: 18px;
width: calc(735 / 1536 * 100vw);
height: calc(668 / 695 * 100vh);
padding: 10px;
border: 1px solid black;
caret-color: black;
overflow-y: auto;
overflow-x: auto;
}

#code:focus {
outline: 0px solid transparent;
}

#code:empty:before {
content: attr(placeholder);
color: grey;
}

.code-wrapper {
display: flex;
width: calc(775 / 1536 * 100vw);
height: calc(690 / 695 * 100vh);
border: 1px solid #ccc;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.line-numbers {
width: calc(40 / 1536 * 100vw);
height: calc(655 / 695 * 100vh);
background-color: white;
padding: 10px;
text-align: right;
color: #666;
overflow: hidden;
font-family: monospace;
font-size: 15px;
line-height: 18px;
}

.line-numbers ol {
list-style: decimal;
padding: 0;
margin: 0;
}

.line-numbers li {
padding-right: 5px;
}

#result {
height: calc(690 / 695 * 100vh);
width: calc(740 / 1536 * 100vw);
border: 1px solid black;
display: block;
}

#frameContainer:fullscreen iframe {
width: 100%;
height: 100%;
}

#frameContainer:-webkit-full-screen iframe {
width: 100%;
height: 100%;
}

#frameContainer:-ms-fullscreen iframe {
width: 100%;
height: 100%;
}

#container {
display: grid;
grid-template-columns: auto auto;
}

select {
font-family: monospace;
cursor: pointer;
}

#allCodes {
height: calc(500 / 695 * 100vh);
width: calc(700 / 1536 * 100vw);
border: 1px solid black;
overflow: auto;
padding-left: calc(535 / 1536 * 100vh);
}

#fileMenu {
width: 100px;
background-color: white;
position: absolute;
}

#fileMenu div {
height: 50px;
border: 1px solid black;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

#fileMenu div:hover {
background-color: #D3D3D3;
}

input[type=text], input[type=search] {
width: 200px;
font-family: monospace;
}

a {
color: green;
text-decoration: none;
}

a:hover {
color: blue;
text-decoration: underline;
}

