.live-log-wrapper {
    position: relative;
    transition: all 0.7s ease-in-out;
}

.live-log-container {
    background-color: #282c34;
    color: #abb2bf;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 14px;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    height: 25vh;
    line-height: 1.6;
    overflow-y: hidden;
    overflow-x: hidden;
}

body.live-log-modal-open {
    overflow: hidden;
}

.live-log-wrapper.modal-active{
    position: fixed;
    top: 5vh;
    left: 5vw;
    width: 90%;
    height: 90vh;
    z-index: 10000;
}

.live-log-wrapper.modal-active .live-log-container {
    height: 100%;
    width: 90vw;
    overflow-y: auto;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
}

body.live-log-modal-open .modal-overlay {
    display: block;
}

.live-log-container .log-entry {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #444951;
}

.live-log-container .log-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.live-log-container .log-status {
    text-align: center;
    color: #6c7079;
    font-style: italic;
    padding: 15px 0;
}

.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    color: #abb2bf;
    padding: 5px;
    line-height: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease-in-out;
}

.fullscreen-btn:hover {
    opacity: 1;
}

.log-content-display {
  width: 90vw !important;
}

.live-log-wrapper.modal-active .fullscreen-btn {
    display: none;
}