#lcst-app.lcst-wrap {
    margin: 24px 0;
}

.lcst-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.lcst-grid-bottom {
    align-items: start;
}

.lcst-panel {
    border: 1px solid #dcdcde;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.lcst-panel h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.lcst-help,
.lcst-inline-note {
    color: #50575e;
    margin-bottom: 16px;
}

.lcst-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lcst-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.lcst-field input[type="text"],
.lcst-field input[type="number"] {
    width: 100%;
}

.lcst-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.lcst-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lcst-stats div {
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 12px;
    background: #f8f9fb;
}

.lcst-stats span {
    display: block;
    color: #646970;
    font-size: 12px;
    margin-bottom: 4px;
}

.lcst-stats strong {
    font-size: 18px;
}

.lcst-log {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    background: #0f172a;
    color: #dbeafe;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    min-height: 180px;
    max-height: 260px;
    overflow: auto;
}

.lcst-table-wrap {
    overflow-x: auto;
}

.lcst-notice {
    padding: 12px 14px;
    border-radius: 8px;
}

.lcst-notice-warning {
    background: #fff7ed;
    border: 1px solid #fdba74;
}

@media (max-width: 900px) {
    .lcst-grid,
    .lcst-form-grid,
    .lcst-stats {
        grid-template-columns: 1fr;
    }
}
