* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000;
    color: #fff;
    line-height: 1.4;
}

.container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.main-content {
    display: flex;
    gap: 40px;
}

.left-panel {
    flex: 0 0 350px;
    min-height: 400px;
}

.right-panel {
    flex: 1;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .left-panel {
        flex: 1;
    }
}

h1 {
    text-align: left;
    color: #fff;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: normal;
}

.subtitle {
    text-align: left;
    color: #888;
    margin-bottom: 20px;
    font-size: 14px;
}

.input-section {
    background: #000;
    padding: 0;
    margin-bottom: 20px;
    border: 1px solid #333;
    padding: 15px;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: normal;
    color: #fff;
    font-size: 14px;
}

select, input[type="text"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace;
}

select:focus, input[type="text"]:focus {
    outline: none;
    border-color: #fff;
}

input[type="text"] {
    margin-bottom: 5px;
}

small {
    color: #888;
    display: block;
    font-size: 12px;
}

.results-section {
    background: #000;
    padding: 15px;
    border: 1px solid #333;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.results-section.hidden {
    display: none;
}

.results-section h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: normal;
}

.result-item {
    padding: 0;
    border: none;
    margin-bottom: 2px;
    font-size: 14px;
    white-space: nowrap;
    overflow-x: auto;
}

.result-item:hover {
    background: #111;
}

.result-configuration {
    display: inline;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    margin-right: 10px;
}

.result-details {
    display: inline;
}

.result-value {
    color: #0f0;
    font-weight: normal;
    margin-right: 10px;
}

.result-error {
    color: #f00;
    margin-right: 10px;
}

.result-components {
    color: #888;
    font-size: 14px;
}

.no-results {
    text-align: left;
    color: #888;
    padding: 0;
}

.schematics {
    border: 1px solid #333;
    padding: 15px;
}

.schematics.hidden {
    display: none;
}

.schematic-section {
    margin-bottom: 30px;
    min-height: 200px;
}

.schematic-section:last-child {
    margin-bottom: 0;
}

.schematic-section h3 {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
}

.schematic {
    margin-bottom: 10px;
    overflow-x: auto;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 24px;
    font-family: 'Courier New', Courier, monospace;
}

.schematic svg {
    width: 100%;
    height: 100%;
    max-height: 150px;
}

.schematic-info {
    color: #888;
    font-size: 12px;
}

.signature {
    margin-top: 40px;
    text-align: center;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.signature:hover {
    opacity: 0.8;
}

.sig-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
}