@import 'bootstrap.min.css';

/* Hide the title bar */
#title {
    display: none;
}

/* General body styling for terminal look */
body {
    padding-top: 60px;
    background-color: black !important;
    color: #00ff00 !important;
    font-family: "Courier New", Courier, monospace !important;
}
@media screen and (max-width: 768px) {
    body {
        padding-top: 120px;
    }
}

/* Keep existing navbar style overrides */
.navbar-brand {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.btn-pause {
    margin: 8px 0 8px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'><path d='M1 1v6h2v-6h-2zm4 0v6h2v-6h-2z'></path></svg>")
        no-repeat center center;
    background-color: #e2e6ea;
    background-size: contain;
    cursor: pointer;
    display: inline-block;
    height: 34px;
    width: 34px;
    border: 1px solid #ccc;
}

.btn-pause.play {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'><path d='M1 1v6l6-3-6-3z'></path></svg>")
        no-repeat center center;
    background-color: #e2e6ea;
}

.navbar-form-custom {
    padding: 8px 0;
}

.no-horiz-padding {
    padding-left: 0px;
    padding-right: 0px;
}

.no-topbar {
    padding-top: 10px;
}

.navbar-inverse .navbar-brand {
    color: white;
}

/* LOG OUTPUT STYLING – MAIN SECTION */
.log {
    white-space: pre-wrap;
    color: #00ff00 !important;
    font-size: 0.95em;
    font-family: "Courier New", Courier, monospace !important;
    background: black !important;
    border: 0;
    padding: 0;
}

/* Force individual line style */
.log .inner-line {
    color: #00ff00 !important;
    padding: 0 15px;
    margin-left: 84pt;
    text-indent: -84pt;
    margin-bottom: 0;
}

.log .inner-line:empty::after {
    content: '.';
    visibility: hidden;
}

.log.no-indent .inner-line {
    margin-left: 0;
    text-indent: 0;
}

/* Highlighted line (when clicked) */
.log .line-selected {
    background-color: #004400 !important;
    color: #00ff00 !important;
}
