.citation-widget {
    background: rgba(15, 21, 36, 0.4);
    border: 1px solid rgba(99, 179, 237, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin: 32px 0;
    font-family: var(--fs);
}

.cite-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ac);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cite-tabs {
    display: flex;
    gap: 8px;
}

.cite-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--td);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s;
}

.cite-tab.active {
    background: rgba(99, 179, 237, 0.1);
    border-color: var(--ac);
    color: #fff;
}

.cite-body {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cite-body pre {
    margin: 0;
    font-family: var(--fm);
    font-size: 12px;
    color: var(--tm);
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.5;
}

.cite-copy {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--ac);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cite-copy:hover {
    border-color: var(--ac);
    background: rgba(99, 179, 237, 0.05);
}
