/* --- SOURCE CONTROL CENTER (Git) --- */
.aisin-source-control {
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: visible; /* Changed from hidden to show resize handles */
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

body.theme-light .aisin-source-control {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.scc-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 44px;
    padding: 0 12px;
}

body.theme-light .scc-header {
    background: rgba(0, 0, 0, 0.02);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.scc-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Status & Actions Section */
.scc-action-bar {
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scc-branch-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scc-branch-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(37, 99, 235, 0.1);
    color: #60a5fa;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.scc-branch-badge:hover {
    background: rgba(37, 99, 235, 0.2);
}

.scc-sync-status {
    font-size: 10px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.scc-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
}

.scc-status-dot.syncing {
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
    animation: scc-pulse 1.5s infinite;
}

.scc-status-dot.error {
    background: #ef4444;
}

@keyframes scc-pulse {
    0% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.4; transform: scale(0.8); }
}

.scc-main-btns {
    display: flex;
    gap: 8px;
}

.scc-btn {
    height: 32px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.scc-btn.primary {
    flex: 1;
    background: #2563eb;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.scc-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.scc-btn.primary:disabled {
    background: rgba(120, 120, 120, 0.1) !important;
    color: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: not-allowed;
    opacity: 0.6;
}

body.theme-light .scc-btn.primary:disabled {
    background: rgba(0, 0, 0, 0.05) !important;
    color: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.scc-btn.accent {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-weight: 700;
}

.scc-btn.accent:hover:not(:disabled) {
    background: rgba(37, 99, 235, 0.25);
    border-color: #60a5fa;
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.scc-btn.accent:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

body.theme-light .scc-btn.accent {
    background: rgba(37, 99, 235, 0.05);
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.1);
}

body.theme-light .scc-btn.accent:hover:not(:disabled) {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.scc-btn.secondary {
    width: 32px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scc-config-btn {
    border-radius: 8px !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%) !important;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.05), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.scc-config-btn:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: var(--text-primary) !important;
    transform: translateY(-1px);
}

.scc-config-btn:active {
    transform: translateY(0);
    background: rgba(255,255,255,0.02) !important;
}

body.theme-light .scc-config-btn {
    background: linear-gradient(145deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.05) 100%) !important;
    border-color: rgba(0,0,0,0.1) !important;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), 0 2px 4px rgba(0,0,0,0.05) !important;
}

.scc-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

body.theme-light .scc-btn.secondary {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .scc-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Drawer / Settings */
.scc-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    background: rgba(0, 0, 0, 0.2);
}

.scc-drawer.open {
    max-height: 400px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scc-field {
    margin-bottom: 12px;
}

.scc-field label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
    font-weight: 700;
}

.scc-input {
    width: 100%;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0 10px;
    font-size: 11px;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.scc-input:focus {
    border-color: #2563eb;
    outline: none;
}

/* History Section */
.scc-history {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.scc-history-header {
    padding: 12px 16px 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
}

.scc-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px;
    min-height: 0; /* Critical for flex-basis scrolling */
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.aisin-source-control:hover .scc-list {
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

body.theme-light .aisin-source-control:hover .scc-list {
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

.scc-list::-webkit-scrollbar {
    width: 5px;
}

.scc-list::-webkit-scrollbar-track {
    background: transparent;
}

.scc-list::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    border: 1px solid transparent;
    background-clip: content-box;
}

.aisin-source-control:hover .scc-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

.aisin-source-control:hover .scc-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

body.theme-light .scc-list::-webkit-scrollbar-thumb {
    background: transparent;
    border: 2px solid transparent;
}

body.theme-light .aisin-source-control:hover .scc-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

body.theme-light .aisin-source-control:hover .scc-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

@keyframes scc-item-appear {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.scc-commit-item {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 4px;
    border: 1px solid transparent;
    position: relative;
    padding-left: 32px;
    background: transparent;
    animation: scc-item-appear 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.scc-commit-item:nth-child(1) { animation-delay: 0.05s; }
.scc-commit-item:nth-child(2) { animation-delay: 0.1s; }
.scc-commit-item:nth-child(3) { animation-delay: 0.15s; }
.scc-commit-item:nth-child(4) { animation-delay: 0.2s; }
.scc-commit-item:nth-child(5) { animation-delay: 0.25s; }
.scc-commit-item:nth-child(n+6) { animation-delay: 0.3s; }

body.theme-light .scc-commit-item:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

.scc-commit-item::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 15px;
    width: 8px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
    z-index: 2;
}

body.theme-light .scc-commit-item::before {
    border-color: rgba(0, 0, 0, 0.1);
}

.scc-commit-item::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 23px;
    bottom: 0px;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

body.theme-light .scc-commit-item::after {
    background: rgba(0, 0, 0, 0.05);
}

.scc-commit-item:last-child::after {
    display: none;
}

.scc-commit-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.scc-commit-item:hover::before {
    background: #2563eb;
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.scc-commit-msg {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scc-commit-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: var(--text-dim);
}

.scc-commit-hash {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 1px 4px;
    border-radius: 4px;
}

body.theme-light .scc-commit-hash {
    background: rgba(0, 0, 0, 0.05);
}

.scc-commit-idx {
    position: absolute;
    left: -5px;
    top: 65%;
    transform: translateY(-50%);
    font-size: 9px;
    font-weight: 700;
    color: var(--text-dim);
    width: 20px;
    text-align: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 5;
}

.scc-commit-avatar {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border-color);
    flex-shrink: 0;
}

.scc-commit-author {
    font-weight: 600;
    max-width: 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scc-push-status {
    margin-left: auto;
    font-size: 14px;
    opacity: 0.4;
    display: flex;
    align-items: center;
    color: var(--text-dim);
}

.scc-push-status.pushed {
    color: #4db355;
    opacity: 1;
}

body.theme-light .scc-push-status.pushed {
    color: #1a7f37;
}

/* Conflict Overlay Refined */
.scc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scc-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Skeleton & Loading States */
.scc-skeleton-item {
    padding: 10px 12px;
    padding-left: 32px;
    margin-bottom: 4px;
    position: relative;
}

.scc-skeleton-item::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 15px;
    width: 8px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.scc-skeleton-line {
    height: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: scc-skeleton-load 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 6px;
}

body.theme-light .scc-skeleton-line {
    background: linear-gradient(90deg, rgba(0,0,0,0.03) 25%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.03) 75%);
    background-size: 200% 100%;
}

.scc-skeleton-line.wide { width: 80%; }
.scc-skeleton-line.narrow { width: 40%; height: 8px; margin-bottom: 0; }

.scc-skeleton-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scc-skeleton-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: scc-skeleton-load 1.5s infinite;
}

body.theme-light .scc-skeleton-circle {
    background: linear-gradient(90deg, rgba(0,0,0,0.03) 25%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.03) 75%);
    background-size: 200% 100%;
}

@keyframes scc-skeleton-load {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes scc-fade-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.5; transform: translateY(0); }
}

.scc-history-footer {
    padding: 16px;
    text-align: center;
    font-size: 10px;
    color: var(--text-dim);
    font-style: italic;
    animation: scc-fade-up 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.scc-overlay.active .scc-conflict-card {
    transform: scale(1);
}

/* Source Control Commit Details Modal */
.scc-commit-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.2s ease-out;
}

.scc-modal-content {
    width: 90%;
    height: 85vh;
    background: var(--bg-color);
    border: 1px solid var(--glass-border-strong);
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.theme-light .scc-modal-content {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.scc-modal-header {
    height: 60px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    background: rgba(47, 129, 255, 0.05);
}

body.theme-light .scc-modal-header {
    background: #f6f8fa;
}

.scc-modal-title {
    display: flex;
    flex-direction: column;
}

.scc-modal-title h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}

.scc-modal-title span {
    font-size: 11px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

.scc-modal-close {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}
.scc-modal-close:hover { color: var(--text-primary); }

.scc-modal-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.scc-modal-sidebar {
    width: 380px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.2);
}

body.theme-light .scc-modal-sidebar {
    background: #f6f8fa;
}

.scc-modal-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #010409;
    overflow: hidden;
}

/* Modal Toolbar */
.scc-modal-toolbar {
    height: 48px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
}

body.theme-light .scc-modal-toolbar {
    background: #f6f8fa;
}

.scc-toolbar-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scc-view-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

.scc-view-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.scc-view-btn:hover { color: var(--text-primary); }
.scc-view-btn.active { background: var(--accent-blue); color: white; }

.scc-full-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    cursor: pointer;
}

.scc-full-toggle input {
    cursor: pointer;
}

.scc-modal-diff-container {
    flex: 1;
    overflow: auto;
    padding: 0; /* Remove padding to allow diff lines to span full width */
}

.scc-diff-view {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    line-height: 18px !important;
    color: var(--text-secondary);
    width: 100%;
}

/* Base Diff Line Style (Shared by Unified and Split) */
.scc-diff-line {
    display: flex !important;
    min-height: 18px !important;
    line-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch !important;
}

/* Split View Specific overrides */
.scc-diff-view.split {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 100%;
}

.scc-diff-view.split .scc-diff-side {
    flex: 1 !important;
    display: flex !important;
    width: 50% !important;
    border-right: 1px solid var(--border-color);
    box-sizing: border-box;
}

.scc-diff-view.split .scc-diff-side:last-child {
    border-right: none;
}

.scc-diff-view.split .scc-diff-row-inner {
    display: flex !important;
    width: 100% !important;
    align-items: stretch !important;
    box-sizing: border-box;
}

.scc-diff-num {
    width: 45px !important;
    min-width: 45px !important;
    text-align: right;
    color: var(--text-dim);
    user-select: none;
    opacity: 0.5;
    padding-right: 8px !important;
    border-right: 1px solid var(--border-color);
    font-size: 10px !important;
    line-height: 18px !important;
    background: rgba(255,255,255,0.02);
    box-sizing: border-box;
}

.scc-diff-content {
    flex: 1 !important;
    padding-left: 8px !important;
    white-space: pre-wrap !important;
    word-break: break-all !important;
    line-height: 18px !important;
    font-size: 11px !important;
    box-sizing: border-box;
}

.scc-diff-line.added { background: rgba(46, 160, 100, 0.12); color: #4db355; }
.scc-diff-line.removed { background: rgba(248, 81, 73, 0.12); color: #ffa198; }
.scc-diff-line.header { 
    background: rgba(56, 139, 253, 0.08); 
    color: #79c0ff; 
    border-top: 1px solid rgba(56, 139, 253, 0.15); 
    border-bottom: 1px solid rgba(56, 139, 253, 0.15); 
    margin: 0;
}

.scc-diff-side.added { background: rgba(46, 160, 100, 0.12); color: #4db355; }
.scc-diff-side.removed { background: rgba(248, 81, 73, 0.12); color: #ffa198; }
.scc-diff-side.empty { background: rgba(255, 255, 255, 0.01); }

body.theme-light .scc-diff-line.added { background: #dafbe1; color: #1a7f37; }
body.theme-light .scc-diff-line.removed { background: #ffebe9; color: #cf222e; }
body.theme-light .scc-diff-line.header { background: #ddf4ff; color: #0969da; border-color: rgba(9, 105, 218, 0.2); }
body.theme-light .scc-diff-num { color: #57606a; }
body.theme-light .scc-diff-view { color: #24292f; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Source Control Light Mode Overrides & Refinements --- */
body.theme-light .scc-modal-content {
    background: #ffffff;
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

body.theme-light .scc-modal-header {
    background: #f6f8fa;
    border-bottom-color: #d0d7de;
}

body.theme-light .scc-modal-title h2 { color: #24292f; }
body.theme-light .scc-modal-title span { color: #57606a; }

body.theme-light .scc-modal-sidebar {
    background: #f6f8fa;
    border-right-color: #d0d7de;
}

body.theme-light .scc-sidebar-header {
    color: #57606a;
    border-bottom-color: #d0d7de;
}

body.theme-light .scc-modal-file-item {
    color: #24292f;
    border-bottom-color: #f6f8fa;
    display: flex;
    align-items: baseline;
}

body.theme-light .scc-modal-file-item:hover { background: #f3f4f6; }
body.theme-light .scc-modal-file-item.active { 
    background: #ebf5ff; 
    color: #0969da;
    border-right: 3px solid #0969da;
}

body.theme-light .scc-modal-main { background: #ffffff; }

body.theme-light .scc-diff-view { color: #24292f; }

body.theme-light .scc-diff-line.added,
body.theme-light .scc-diff-side.added { background: #e6ffec; color: #24292f; }

body.theme-light .scc-diff-line.removed,
body.theme-light .scc-diff-side.removed { background: #ffebe9; color: #24292f; }

body.theme-light .scc-diff-line.header,
body.theme-light .scc-diff-side.header { background: #ddf4ff; color: #0969da; }
body.theme-light .scc-diff-num { color: #57606a; opacity: 0.6; }
