
:root {
    --sidebar-width: 400px;
    --main-padding: 20px;
    --section-spacing: 15px;
    --compact-spacing: 8px;
    --input-height: 36px;
    --font-main: 'Roboto', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    overflow: hidden;
    background-color: #f8f9fa;
}

.app-container {
    padding: 0 !important;
    height: 100vh;
}

.main-row {
    margin: 0;
    height: 100vh;
}

.sidebar-col {
    padding: 0;
    height: 100vh;
    position: relative;
}

.main-col {
    padding: 0;
    height: 100vh;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: #f8f9fa;
    padding: var(--main-padding);
    overflow-y: auto;
    border-right: 1px solid #dee2e6;
    z-index: 1000;
}

.main-content {
    padding: var(--main-padding);
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.template-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.template-btn {
    text-align: left;
    width: 100%;
    font-size: 0.9rem;
    padding: 8px 15px;
}

.sidebar-divider {
    margin: 20px 0;
}

.runner-selector {
    margin-bottom: 20px;
}

.runner-label {
    font-size: 0.9rem;
    padding: 8px 15px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.runner-accordion {
    margin-bottom: 20px;
}

.accordion-item {
    font-size: 0.9rem;
}

.param-header {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 15px 0 10px;
    color: #495057;
}

.param-group {
    margin-bottom: 10px;
}

.param-input {
    margin-bottom: 10px;
}

.action-container {
    margin-top: 20px;
}

.selection-text {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #333;
}

.status-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.run-btn {
    width: 100%;
    font-size: 1rem;
    padding: 10px;
}

.run-status {
    margin-top: 15px;
    font-size: 0.9rem;
}

.main-header {
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container {
    margin-bottom: var(--section-spacing);
}

.compact-form {
    display: flex;
    flex-direction: column;
    gap: var(--compact-spacing);
}

.config-section {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: var(--section-spacing);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-header {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.compact-row {
    margin-bottom: 8px;
}

.small-label {
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: #495057;
    font-weight: 500;
}

.small-dropdown {
    font-size: 0.9rem;
}

.small-textarea {
    font-size: 0.85rem;
}

.progress-section {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: var(--section-spacing);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.progress-bar {
    height: 25px;
    margin-bottom: 12px;
}

.status-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.status-text {
    font-size: 0.85rem;
    color: #6c757d;
}

.results-container {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.result-alert {
    margin-bottom: 15px;
}

.output-details {
    margin-top: 15px;
}

.output-summary {
    font-weight: 600;
    cursor: pointer;
    color: #0d6efd;
    font-size: 0.9rem;
}

.output-pre {
    max-height: 300px;
    overflow: auto;
    background-color: #f8f9fa;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: pre-wrap;
}

.form-control-sm {
    height: var(--input-height);
    padding: 5px 10px;
    font-size: 0.9rem;
}

.Select-control, .Select-menu-outer {
    font-size: 0.9rem;
}

.Select-placeholder, .Select-value {
    line-height: var(--input-height) !important;
}

.Select-input {
    height: var(--input-height);
}
