/*Created by TheDiscordianDev ---> Do Not Change anything here <-- */
/*To make changes, scroll down*/

body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

.terminal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #252526;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.terminal-controls {
    padding: 10px;
    background-color: #333;
    display: flex;
    justify-content: space-between;
}

.input-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.input-group input {
    flex-grow: 1;
    padding: 8px;
    background-color: #252526;
    border: 1px solid #444;
    color: #e0e0e0;
    border-radius: 3px;
}

button {
    padding: 8px 15px;
    background-color: #0e639c;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #1177bb;
}

#stopBtn {
    background-color: #c42b1c;
}

#stopBtn:hover {
    background-color: #d93826;
}

.terminal-output {
    height: 500px;
    padding: 15px;
    overflow-y: auto;
    white-space: pre-wrap;
    line-height: 1.4;
    font-size: 14px;
}

.terminal-input {
    padding: 10px;
    background-color: #333;
    display: flex;
    gap: 10px;
}

.terminal-input input {
    flex-grow: 1;
    padding: 8px;
    background-color: #252526;
    border: 1px solid #444;
    color: #e0e0e0;
    border-radius: 3px;
}

.input-line {
    color: #4ec9b0;
    font-weight: bold;
}
/* - - - - - - - - Make New Changes below this line- - - - - - - - - - - - -  */
.info-box{
    padding: 1%;
    background-color: #001;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
}

.mini-wrapper span{
    margin-right: 5px;
}

#connection-status-wrapper{
    background-color: #111;
    font-size: 12px;
    font-weight: 800;
}
.status-bulb{
    width: 10px;
    height: 10px;
    margin: 0 10px;
    /*#0000 is same as #000 with 0 opacity i.e. #00000000 or rgba(0,0,0, 0.0)*/
    /*the below border is just a 1px invisible border*/
    border: 1px solid #0000;
    border-radius: 50%;
    background-color: #111;
    /*Box_Shadow:  horizontal-pos, vertical-pos, blur, spread, color*/
    box-shadow: 0px 0px 3px 1px #555;

    transition: all 300ms ease;
}
.bulb-off{
    background-color: red;
    /*Box_Shadow:  horizontal-pos, vertical-pos, blur, spread, color*/
    box-shadow: 0px 0px 3px 1px red;
}
.bulb-on{
    background-color: #0A0;
    /*Box_Shadow:  horizontal-pos, vertical-pos, blur, spread, color*/
    box-shadow: 0px 0px 3px 1px #0F0;
}

#connection-status-wrapper .mini-wrapper{
    display: flex;
}