.json-details {
    max-height: 200px;
    overflow: auto;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 4px;
    font-family: monospace;
    white-space: pre-wrap;
}
.table-bordered {
    width: 100%;
    border-collapse: collapse;
}
.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
    padding: 8px;
}
.table-bordered th {
    background-color: #f8f9fa;
}
.json-details-table {
    width: 100%;
    table-layout: fixed;
}
.json-details-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}
.json-key-cell {
    font-weight: bold;
    color: #007bff;
    vertical-align: top;
    padding-top: 12px;
}
.json-value-cell {
    padding: 8px;
}
.json-value {
    padding: 4px;
    background-color: #f8f9fa;
    border-radius: 4px;
    word-break: break-all;
}
.nested-json {
    padding: 8px;
    background-color: #f1f1f1;
    border-radius: 4px;
    margin-bottom: 8px;
}
.nested-item {
    margin-bottom: 6px;
}
.nested-key {
    color: #e83e8c;
}
.nested-value {
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
}
pre.json-pre {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    max-height: 300px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-all;
}
