/* ===============================================================
   cold_jokes.css  —  冷笑话生成器样式
   参考 pros_and_cons_analysis.css 布局风格
   =============================================================== */

/* ── 主容器 ─────────────────────────────────────────────── */
.cj-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 160px);
    min-height: 540px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cj-container.fullscreen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    z-index: 9000;
    border-radius: 0;
    border: none;
}

/* ── 顶部工具栏 ───────────────────────────────────────────── */
.cj-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid #5a6fd8;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.toolbar-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.toolbar-group + .toolbar-group {
    margin-left: 6px;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.25);
}

.toolbar-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-right: 6px;
    white-space: nowrap;
}

.toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.toolbar-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.28);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-1px);
}

.toolbar-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.toolbar-btn-primary {
    background: rgba(255,255,255,0.9);
    color: #6c63ff;
    font-weight: 600;
    border-color: rgba(255,255,255,0.9);
}

.toolbar-btn-primary:hover:not(:disabled) {
    background: #fff;
    color: #5a52e0;
}

/* 生成按鈕 loading 流光 shimmer 动画 */
.toolbar-btn-primary.cj-btn-loading {
    background: linear-gradient(90deg, #5a52e0 0%, #a78bfa 35%, #5a52e0 65%, #4338ca 100%);
    background-size: 200% 100%;
    animation: cjBtnShimmer 1.4s ease-in-out infinite;
    color: #fff;
    border-color: transparent;
    cursor: not-allowed;
    opacity: 1;
}

@keyframes cjBtnShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.toolbar-btn-danger {
    background: rgba(239,68,68,0.75);
    border-color: rgba(239,68,68,0.9);
    color: #fff;
}

.toolbar-btn-danger:hover:not(:disabled) {
    background: rgba(239,68,68,0.95);
}

/* ── 三栏主布局 ──────────────────────────────────────────── */
.cj-main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
    gap: 0;
}

/* ── 左栏：历史记录 ───────────────────────────────────────── */
.cj-history-panel {
    width: 220px;
    min-width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    overflow: hidden;
}

.history-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px 10px;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.history-panel-header h3 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.history-count {
    font-size: 10px;
    color: #94a3b8;
    margin-left: 4px;
}

.history-clear-btn {
    background: #fff0f0;
    border: none;
    color: #ef4444;
    font-size: 11px;
    cursor: pointer;
    padding: 3px 7px;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
}

.history-clear-btn:hover {
    background: #fde8e8;
}

.history-search {
    padding: 8px 10px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.history-search input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 8px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 12px;
    color: #334155;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s;
}

.history-search input:focus {
    border-color: #818cf8;
    background: #fff;
}

.history-list {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0;
}

.history-list::-webkit-scrollbar { width: 4px; }
.history-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
.history-list::-webkit-scrollbar-thumb:hover { background: #f97316; }

.history-empty {
    padding: 24px 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.7;
}

.history-item {
    padding: 9px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
    position: relative;
}

.history-item:hover {
    background: #f0f4ff;
}

.history-item.active {
    background: #ede9fe;
    border-left: 3px solid #7c3aed;
    padding-left: 9px;
}

.history-item.active:hover {
    background: #ddd6fe;
}

.history-item-topic {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.history-item-meta {
    font-size: 10px;
    color: #94a3b8;
    display: flex;
    gap: 6px;
    align-items: center;
}

.history-item-del {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 3px;
    opacity: 0;
    transition: all 0.15s;
}

.history-item:hover .history-item-del {
    opacity: 1;
    color: #ef4444;
}

/* ── 中栏：输入配置 ───────────────────────────────────────── */
.cj-input-panel {
    width: 280px;
    min-width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    overflow: hidden;
}

.panel-header {
    padding: 12px 16px 10px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
    flex-shrink: 0;
}

.panel-header h3 {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.panel-tip {
    font-size: 11px;
    color: #94a3b8;
}

.cj-input-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 14px 10px;
}

.cj-input-body::-webkit-scrollbar { width: 4px; }
.cj-input-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
.cj-input-body::-webkit-scrollbar-thumb:hover { background: #f97316; }

/* 字段组 */
.cj-field-group {
    margin-bottom: 16px;
}

.cj-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.optional-mark {
    font-weight: 400;
    color: #94a3b8;
}

.required-mark {
    color: #ef4444;
}

.cj-topic-input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    color: #334155;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}

.cj-topic-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129,140,248,0.15);
    background: #fff;
}

.cj-char-counter {
    text-align: right;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 3px;
}

/* 选项组 */
.cj-option-group {
    margin-bottom: 16px;
}

/* 风格网格 */
.cj-style-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.cj-style-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 6px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s ease;
    background: #f8fafc;
    text-align: center;
}

.cj-style-option:hover {
    border-color: #a5b4fc;
    background: #f0f4ff;
}

.cj-style-option.selected {
    border-color: #6c63ff;
    background: linear-gradient(135deg, #ede9fe, #f0f4ff);
    box-shadow: 0 1px 6px rgba(108,99,255,0.18);
}

.cj-style-option.selected:hover {
    border-color: #5a52e0;
    background: linear-gradient(135deg, #ede9fe, #e8edff);
}

.cj-style-option.selected .cj-opt-name {
    color: #5b21b6;
    font-weight: 700;
}

.cj-opt-icon {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 3px;
}

.cj-opt-name {
    font-size: 11px;
    font-weight: 600;
    color: #334155;
}

.cj-opt-hint {
    display: block;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 1px;
}

/* 数量选择 */
.cj-count-options {
    display: flex;
    gap: 6px;
}

.cj-count-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s ease;
    background: #f8fafc;
}

.cj-count-option:hover {
    border-color: #a5b4fc;
    background: #f0f4ff;
}

.cj-count-option.selected {
    border-color: #6c63ff;
    background: linear-gradient(135deg, #ede9fe, #f0f4ff);
    box-shadow: 0 1px 6px rgba(108,99,255,0.18);
}

.cj-count-option.selected:hover {
    border-color: #5a52e0;
    background: linear-gradient(135deg, #ede9fe, #e8edff);
}

.cj-count-option.selected .cj-opt-name {
    color: #5b21b6;
    font-weight: 700;
}

/* 快捷标签 */
.cj-quick-tags {
    margin-bottom: 14px;
}

.cj-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}

.cj-quick-tag {
    padding: 4px 9px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 11px;
    color: #475569;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.16s ease;
    white-space: nowrap;
}

.cj-quick-tag:hover {
    border-color: #818cf8;
    background: #ede9fe;
    color: #5b21b6;
}

.cj-quick-tag.active {
    border-color: #7c3aed;
    background: #ede9fe;
    color: #5b21b6;
    font-weight: 600;
}

/* 使用说明框 */
.cj-tips-box {
    background: linear-gradient(135deg, #f8f7ff, #f0f4ff);
    border: 1px solid #e0e7ff;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 4px;
}

.cj-tips-box p {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 600;
    color: #5b21b6;
}

.cj-tips-box ul {
    margin: 0;
    padding-left: 16px;
    list-style: disc;
}

.cj-tips-box li {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.7;
}

.cj-tips-box kbd {
    display: inline-block;
    padding: 0 4px;
    border: 1px solid #cbd5e1;
    border-bottom-width: 2px;
    border-radius: 3px;
    font-size: 10px;
    font-family: monospace;
    background: #fff;
    color: #334155;
}

/* ── 右栏：笑话展示 ───────────────────────────────────────── */
.cj-result-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    overflow: hidden;
}

.cj-result-header {
    padding: 12px 16px 10px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.cj-result-header h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.result-actions-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cj-regenerate-btn {
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    color: #4f46e5;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.18s;
}

.cj-regenerate-btn:hover {
    background: #ede9fe;
    border-color: #818cf8;
}

.cj-regenerate-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.cj-result-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.cj-result-body::-webkit-scrollbar { width: 5px; }
.cj-result-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.cj-result-body::-webkit-scrollbar-thumb:hover { background: #f97316; }

/* 占位提示 */
.result-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #94a3b8;
    padding: 40px 20px;
}

.placeholder-icon {
    font-size: 56px;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.placeholder-title {
    font-size: 17px;
    font-weight: 700;
    color: #64748b;
    margin: 0 0 8px;
}

.placeholder-desc {
    font-size: 13px;
    color: #94a3b8;
    margin: 2px 0;
}

/* 加载动画 */
.result-loading {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.loading-dots {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.loading-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation: bounce 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
    40%           { transform: scale(1.1); opacity: 1; }
}

.loading-text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    margin: 0 0 6px;
}

.loading-topic {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* 错误提示 */
.result-error-wrap {
    flex: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── 笑话卡片（AI结果） ──────────────────────────────────── */
.cj-jokes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cj-jokes-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
    animation: fadeInMeta 0.3s ease both;
    transition: opacity 0.3s ease-in-out;
}

@keyframes fadeInMeta {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cj-meta-topic {
    font-size: 12px;
    font-weight: 600;
    color: #5b21b6;
    background: #ede9fe;
    padding: 3px 9px;
    border-radius: 12px;
}

.cj-meta-style {
    font-size: 12px;
    color: #4f46e5;
    background: #e0e7ff;
    padding: 3px 9px;
    border-radius: 12px;
}

.cj-meta-count {
    font-size: 11px;
    color: #94a3b8;
    margin-left: auto;
}

.cj-joke-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 16px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    animation: slideIn 0.38s ease both;
    word-break: break-word;
}

.cj-joke-card:hover {
    box-shadow: 0 4px 16px rgba(108,99,255,0.14);
    transform: translateY(-1px);
    border-color: #c4b5fd;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cj-joke-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cj-joke-emoji {
    font-size: 22px;
    line-height: 1;
}

.cj-joke-number {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 10px;
}

.cj-joke-tag {
    font-size: 11px;
    color: #7c3aed;
    background: #f3f0ff;
    border: 1px solid #ddd6fe;
    padding: 2px 8px;
    border-radius: 10px;
}

.cj-copy-joke-btn {
    margin-left: auto;
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    padding: 3px 7px;
    color: #94a3b8;
    transition: all 0.15s;
}

.cj-copy-joke-btn:hover {
    border-color: #818cf8;
    color: #6c63ff;
    background: #f0f4ff;
}

.cj-joke-setup {
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #a5b4fc;
    margin-bottom: 4px;
}

.cj-joke-divider {
    text-align: center;
    margin: 6px 0;
    position: relative;
}

.cj-joke-divider-icon {
    font-size: 14px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50%       { opacity: 1;   transform: translateY(3px); }
}

.cj-joke-punchline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #fdf4ff, #f0f4ff);
    border-radius: 8px;
    border: 1px solid #e9d5ff;
}

.cj-punchline-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cj-punchline-text {
    font-size: 14px;
    font-weight: 600;
    color: #5b21b6;
    line-height: 1.6;
    word-break: break-word;
}

/* 错误卡片 */
.cj-error-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    background: #fff8f8;
    border: 1px solid #fecaca;
    border-radius: 10px;
    text-align: center;
}

.cj-error-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.cj-error-msg {
    color: #ef4444;
    font-size: 14px;
    margin: 0 0 6px;
}

.cj-error-hint {
    color: #94a3b8;
    font-size: 12px;
    margin: 0 0 12px;
}

.error-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 2px 8px rgba(108,99,255,0.25);
}

.error-retry-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(108,99,255,0.35);
}

/* ── 示例模态框 ──────────────────────────────────────────── */
.cj-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9100;
    backdrop-filter: blur(2px);
}

.cj-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 9200;
    width: 580px;
    max-width: 94vw;
    max-height: 80vh;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.cj-modal.show {
    display: flex;
}

.cj-modal-overlay.show {
    display: block;
}

.cj-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.cj-modal-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.cj-modal-close {
    background: none;
    border: none;
    font-size: 16px;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 5px;
    transition: all 0.15s;
}

.cj-modal-close:hover {
    background: #f1f5f9;
    color: #334155;
}

.cj-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cj-modal-body::-webkit-scrollbar { width: 4px; }
.cj-modal-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
.cj-modal-body::-webkit-scrollbar-thumb:hover { background: #f97316; }

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.example-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s;
    background: #f8fafc;
}

.example-card:hover {
    border-color: #818cf8;
    background: #f0f4ff;
    box-shadow: 0 2px 8px rgba(108,99,255,0.12);
    transform: translateY(-1px);
}

.example-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.example-info {
    flex: 1;
    min-width: 0;
}

.example-topic {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.example-desc {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.example-badges {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.example-badge {
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 8px;
    background: #e0e7ff;
    color: #4f46e5;
}

/* ── 响应式适配 ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .cj-history-panel {
        display: none;
    }
    .cj-input-panel {
        width: 240px;
        min-width: 200px;
    }
}

@media (max-width: 640px) {
    .cj-input-panel {
        display: none;
    }
    .cj-container {
        height: calc(100vh - 120px);
    }
    .toolbar-title {
        display: none;
    }
    .example-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .cj-toolbar,
    .cj-history-panel,
    .cj-input-panel {
        display: none !important;
    }
    #cjResultPlaceholder,
    #cjResultLoading {
        display: none !important;
    }
    .cj-result-panel {
        width: 100%;
    }
    .cj-result-body {
        overflow: visible;
    }
    #cjResultContent {
        display: block !important;
    }
}
