/* JMeter GUI Dummy Styles */
.jmeter-gui {
    font-family: Tahoma, "Segoe UI", sans-serif;
    font-size: 12px;
    color: #000;
    background: #f0f0f0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #a0a0a0;
    box-sizing: border-box;
    overflow: hidden;
}

.jmeter-menu-bar {
    display: flex;
    background: #f0f0f0;
    padding: 2px 4px;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
}

.jmeter-menu-item {
    padding: 3px 8px;
    cursor: default;
}
.jmeter-menu-item:hover {
    background: #e5f3ff;
    border-radius: 2px;
}

.jmeter-toolbar {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 4px;
    border-bottom: 1px solid #a0a0a0;
    gap: 2px;
}

.jmeter-tool-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 2px;
    cursor: default;
}
.jmeter-tool-btn:hover {
    border-color: #a0a0a0;
    background: #e0e0e0;
}
.jmeter-tool-btn svg, .jmeter-tool-btn img {
    width: 16px;
    height: 16px;
}

.jmeter-toolbar-divider {
    width: 1px;
    height: 18px;
    background: #a0a0a0;
    margin: 0 4px;
}

.jmeter-toolbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 8px;
}

.jmeter-main-area {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.jmeter-sidebar {
    width: 250px;
    background: #ffffff;
    border-right: 1px solid #a0a0a0;
    padding: 4px;
    overflow-y: auto;
    text-align: left;
}

.jm-tree-node {
    display: flex;
    align-items: center;
    padding: 2px 0;
    cursor: default;
    white-space: nowrap;
}
.jm-tree-node.selected {
    background: #0078d7;
    color: #fff;
}
.jm-tree-toggle {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 14px;
    color: #555;
    margin-right: 4px;
}
.jm-tree-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.jm-tree-children {
    padding-left: 16px;
    border-left: 1px dotted #a0a0a0;
    margin-left: 8px;
}

.jmeter-content-pane {
    flex: 1;
    background: #f0f0f0;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.jm-content-header {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 16px 0;
    text-align: left;
}

.jm-form-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.jm-form-label {
    width: 80px;
    text-align: left;
}
.jm-form-input {
    flex: 1;
    border: 1px solid #a0a0a0;
    padding: 2px 4px;
    font-family: inherit;
    font-size: inherit;
    background: #fff;
}
.jm-fieldset {
    border: 1px solid #ccc;
    padding: 8px 12px;
    margin-bottom: 16px;
    text-align: left;
}
.jm-fieldset legend {
    color: #333;
    padding: 0 4px;
}

.jm-table-container {
    flex: 1;
    background: #fff;
    border: 1px solid #a0a0a0;
    overflow: auto;
    margin-bottom: 8px;
}

.jm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}
.jm-table th, .jm-table td {
    border: 1px solid #ccc;
    padding: 2px 4px;
    text-align: right;
    white-space: nowrap;
}
.jm-table th {
    background: #f0f0f0;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #a0a0a0;
}
.jm-table td:first-child {
    text-align: left;
}

.jm-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
}
.jm-btn {
    background: #e0e0e0;
    border: 1px solid #a0a0a0;
    padding: 2px 12px;
    font-family: inherit;
    font-size: inherit;
    cursor: default;
}
.jm-btn:hover {
    background: #e5e5e5;
}
