.cq-pricing-lab {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    font-family: Arial, sans-serif;
}

.cq-input-panel {
    flex: 1;
}

.cq-result-panel {
    width: 320px;
}

.cq-field {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.cq-field label {
    min-width: 180px;
    font-weight: 600;
}

.cq-field input {
    width: 90px;    
}

.cq-note {
    font-size: 12px;
    color: #777;
	margin-left: 10px;
}

.cq-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cq-risk {
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    font-size: 13px;
}
.cq-risk.low {
    background: #e6f7ee;
    color: #1f8a4c;
}
.cq-risk.medium {
    background: #fff4e5;
    color: #c77700;
}
.cq-risk.high {
    background: #fdecea;
    color: #c62828;
}

.cq-autocomplete { position: relative; }
.cq-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    z-index: 99;
}
.cq-item { padding: 2px; cursor: pointer; }
.cq-item:nth-child(odd) {
    background-color: #ffffff;
}
.cq-item:nth-child(even) {
    background-color: #f7f9fc;
}
.cq-item:hover,
.cq-item.active {
    background-color: #e6f0ff;
}
.cq-item.disabled {
    background-color: #ffffff;
    color: #999;
    cursor: not-allowed;
}


@media (max-width: 900px) {
    .cq-pricing-lab {
        flex-direction: column;
    }
}