

#consoleContainer {
    display: flex;
    flex-direction: column;
    background: #111111;
    min-height: 40px; /* Kept so header line never disappears entirely */
    height: 180px; /* Fallback starting default height */
}

#consoleHeader{

height:40px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 12px;

background:#1a1a1a;

font-weight:bold;

}

#consoleOutput{

flex:1;

overflow:auto;

padding:10px;

font-family:monospace;

font-size:13px;

}

.log{

margin-bottom:8px;

}

.log.info{

color:#58a6ff;

}

.log.success{

color:#3fb950;

}

.log.warn{

color:#d29922;

}

.log.error{

color:#f85149;

}

.time{

color:#888;

margin-right:8px;

}