/* sidebar.css */
.deepco-sidebar {
    width: 390px;
    height: 408px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box;
}

.ascii-box.half-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.half-box {
    max-height: 200px;
    flex: 1;
    border: 1px dashed lime;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.worker-stats {
    flex: 1;
}

.dig-log {
    flex: 1;
    overflow-y: auto;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 160px;
}

/* Log header with toggle */
.log-header-with-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.log-toggle-switch {
    display: flex;
    align-items: center;
}

/* Processing log disabled states */
.log-disabled-notice {
    padding: 15px;
}

.log-disabled-notice.center {
    text-align: center;
}

.log-disabled-notice.left {
    text-align: left;
}

.log-disabled-header {
    text-align: center;
}

.log-disabled-welcome {
    margin-bottom: 8px;
}

.log-disabled-performance {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.log-disabled-content {
    text-align: left;
    margin-bottom: 15px;
}

.log-disabled-training {
    margin-bottom: 8px;
}

.log-disabled-blocks {
    margin-bottom: 8px;
}

.log-disabled-progression {
    font-size: 0.9em;
}

.log-disabled-footer {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 12px;
}

.log-disabled-settings {
    font-size: 0.9em;
    margin-bottom: 8px;
}

.log-disabled-credentials {
    font-size: 0.8em;
}

.log-disabled-standard {
    margin-bottom: 10px;
}

.log-disabled-enable {
    font-size: 0.9em;
}

.log-disabled-features {
    font-size: 0.8em;
    margin-top: 8px;
}

.access-panel-link {
    color: #1abc9c;
    text-decoration: underline;
}




.section-header.with-settings {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.settings-button {
    font-size: 16px;
    color: lime;
    text-decoration: none;
    padding-left: 8px;
    transition: transform 0.2s ease;
    position: relative;
    top: -3px; /* lift it slightly */
}

.settings-button:hover {
    transform: rotate(20deg);
    text-shadow: 0 0 2px lime;
}

.settings-links {
    display: inline-flex;
    gap: 0.5rem; /* spacing between icons */
}
