.hex-preview-container {
    max-height: 420px;
    overflow: auto;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hex-dump {
    font-family: "Fira Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding: 16px;
    white-space: pre;
    word-break: normal;
}

.hex-preview-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.hex-preview-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

[data-bs-theme="dark"] .hex-preview-container {
    background-color: #1f1f1f;
    border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .hex-dump {
    color: #e9ecef;
}

