.layout-container {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    grid-template-rows: auto;
    gap: 24px;
    margin-top: 20px;
}

.info-container {
    grid-row: 1;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    background: #f7fafd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 22px 18px;
    font-size: 17px;
    color: #222;
    gap: 24px;
}

#datapoint-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

#datapoint-panel-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.datapoint-btn {
    width: 32px;
    height: 32px;
    background: #a8d4f1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #222;
}

#datapoint-tooltip {
    display: none;
    position: absolute;
    z-index: 2000;
    background: #f7fafd;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 15px;
    max-width: 350px;
}

#qa-panel {
    /* width: 300px; */
    background: #f7fafd;
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* max-height: 650px; */
    overflow-y: auto;
}

.qa-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3a4a;
}

.qa-text,
.qa-answer {
    margin-bottom: 20px;
    line-height: 1.5;
}

#cy {
    min-width: 100%;;
    max-width: 1000px;
    min-height: 500px;
    display: block;
    margin: 0 auto;
    background: #e5ecf6;
    border-radius: 8px;
}

.cy-wrapper {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.graph-container {
    grid-row: 1;
    grid-column: 2;
    display: flex;
    flex-direction: column;
}

.llm-judges-container {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 20px;
}

#llm-judges-row {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.llm-judge-box {
    flex: 1;
    background: #f7fafd;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    max-height: 650px;
    overflow-y: auto;
}

.judge-title {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 6px;
    color: #2d3a4a;
}