/* ===================================================
   Spring AI Ops — Eureka-inspired design
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
}

/* ── Navbar ── */
.navbar {
    background-color: #34302d;
    border-bottom: 4px solid #6db33f;
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.navbar-brand .leaf { color: #6db33f; font-size: 1.3rem; }

.navbar-subtitle {
    font-size: 0.78rem;
    color: #a8a29e;
}

/* ── Page Content ── */
.page-content {
    width: min(96%, max(80%, 1280px));
    margin: 28px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Panel ── */
.panel {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.panel-header {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #34302d;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.panel-body {
    padding: 20px 24px;
}

/* ── Info table ── */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 9px 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.info-table tr:last-child td { border-bottom: none; }

.info-table td:first-child {
    width: 200px;
    font-weight: 600;
    color: #555;
    background-color: #fafafa;
}

/* ── Status badges ── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-up   { background: #6db33f; color: #fff; }
.badge-down { background: #aaa;    color: #fff; }

/* ── Reconfigure button ── */
.btn-secondary {
    margin-top: 4px;
    display: inline-block;
    padding: 5px 14px;
    background: #fff;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-secondary:hover { background: #f0f0f0; }

/* ── Radio buttons ── */
.radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.radio-option { position: relative; }

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.15s;
    user-select: none;
}

.radio-option label .provider-icon { color: #999; }

/* ── Provider logo (SVG img inside radio label) ── */
.provider-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    opacity: 0.45;
    filter: grayscale(40%);
    transition: opacity 0.15s, filter 0.15s;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + label .provider-logo {
    opacity: 1;
    filter: none;
}

.radio-option label:hover .provider-logo {
    opacity: 0.8;
    filter: grayscale(10%);
}

/* logo displayed next to badge in the config panel */
.provider-logo-badge {
    opacity: 1;
    filter: none;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

.radio-option input[type="radio"]:checked + label {
    border-color: #6db33f;
    background: #f1f8e9;
    color: #34302d;
    font-weight: 600;
}

.radio-option label:hover { border-color: #6db33f; }

/* ── Form ── */
.form-group { margin-bottom: 14px; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    max-width: 460px;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
    border-color: #6db33f;
    box-shadow: 0 0 0 3px rgba(109, 179, 63, 0.15);
}

/* ── Primary button ── */
.btn-primary {
    padding: 7px 20px;
    background: #6db33f;
    color: #fff;
    border: 1px solid #5a9632;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-primary:hover    { background: #5a9632; }
.btn-primary:disabled { background: #b5d98a; border-color: #b5d98a; cursor: not-allowed; }

/* ── Alerts ── */
.alert {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
    max-width: 460px;
}

.alert-success { background: #dff0d8; color: #3c763d; border: 1px solid #d6e9c6; }
.alert-warning { background: #fcf8e3; color: #8a6d3b; border: 1px solid #faebcc; }
.alert-error   { background: #f2dede; color: #a94442; border: 1px solid #ebccd1; }

/* ── Modal Overlay ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.fading-out {
    opacity: 0;
    pointer-events: none;
}

.modal-box {
    background: #fff;
    border-radius: 4px;
    width: 500px;
    max-width: calc(100vw - 40px);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: #34302d;
    color: #fff;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-close-btn {
    background: none;
    border: none;
    color: #a8a29e;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 3px;
    transition: color 0.15s, background 0.15s;
}

.modal-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.modal-body {
    padding: 24px;
}

.modal-desc {
    margin-bottom: 18px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Main Section (fade-in) ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-section {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.main-section.visible {
    display: flex;
    animation: fadeInUp 0.5s ease forwards;
}

/* ── App Layout: 2:8 split ── */
.app-layout {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    min-height: 420px;
    background: #fff;
}

.app-sidebar {
    flex: 2;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.app-sidebar .panel-header {
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

.app-item {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    font-size: 0.88rem;
    color: #333;
    transition: background 0.12s;
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-item:hover  { background: #f5f5f5; }
.app-item:last-child { border-bottom: none; }

.app-item.active {
    background: #f1f8e9;
    color: #34302d;
    font-weight: 600;
    border-left: 3px solid #6db33f;
    padding-left: 13px;
}

.app-item-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-item-delete {
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 2px;
    transition: color 0.15s;
    flex-shrink: 0;
    line-height: 1;
}

.app-item-delete:hover { color: #a94442; }

/* ── Add Application button ── */
.btn-add {
    padding: 2px 10px;
    background: #6db33f;
    color: #fff;
    border: 1px solid #5a9632;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    text-transform: none;
    letter-spacing: 0;
}

.btn-add:hover { background: #5a9632; }

/* ── App blink animation (newly added) ── */
@keyframes appBlink {
    0%, 100% { background-color: transparent; }
    50%       { background-color: rgba(169, 68, 66, 0.18); }
}

.app-item.blink {
    animation: appBlink 0.5s ease 3;
}

.list-placeholder {
    padding: 20px 16px;
    font-size: 0.85rem;
    color: #999;
}

.list-error { color: #a94442; }

/* ── App Detail ── */
.app-detail {
    flex: 8;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ── Loading Progress Bar ── */
.loading-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 16px;
    padding: 40px 20px;
    color: #aaa;
    font-size: 0.85rem;
}

.progress-bar-track {
    width: 200px;
    height: 3px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 40%;
    background: #6db33f;
    border-radius: 2px;
    animation: progress-slide 1.2s ease-in-out infinite;
}

@keyframes progress-slide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(600%); }
}

.empty-state {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 0.9rem;
}

.app-detail-header {
    padding: 12px 20px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    font-weight: 700;
    color: #34302d;
    flex-shrink: 0;
}

/* ── Tabs ── */
.tab-bar {
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    background: #fff;
    padding: 0 16px;
    flex-shrink: 0;
}

.tab-btn {
    padding: 10px 18px;
    border: none;
    background: none;
    font-size: 0.88rem;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.tab-btn:hover { color: #34302d; }

.tab-btn.active {
    color: #34302d;
    font-weight: 600;
    border-bottom-color: #6db33f;
}

.tab-content {
    padding: 24px 20px;
    flex: 1;
    overflow-y: auto;
}

/* ── Info Message ── */
.info-message {
    background: #fafafa;
    border: 1px solid #e4e4e4;
    border-left: 4px solid #6db33f;
    border-radius: 3px;
    padding: 16px 18px;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
}

.info-message code {
    background: #eef5e6;
    color: #34302d;
    padding: 2px 7px;
    border-radius: 3px;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.9em;
    font-weight: 600;
}

/* ── Analysis Layers ── */
.analysis-layer {
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    margin-bottom: 12px;
    overflow: hidden;
}

.layer-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e4e4e4;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #34302d;
    letter-spacing: 0.5px;
}

.json-block {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 14px 16px;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.77rem;
    line-height: 1.55;
    overflow-x: auto;
    max-height: 280px;
    overflow-y: auto;
    margin: 0;
    white-space: pre;
}

.json-key     { color: #9cdcfe; }
.json-string  { color: #ce9178; }
.json-number  { color: #b5cea8; }
.json-boolean { color: #569cd6; }
.json-null    { color: #569cd6; }

/* ── Loki Log Viewer ── */
.loki-log-viewer {
    background: #1e1e1e;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.77rem;
    line-height: 1.55;
}

.loki-stream-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
    color: #9e9e9e;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.loki-stream-header:first-child {
    border-top: none;
}

.loki-level-badge {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.loki-level-error  { background: #5a1a1a; color: #f48771; }
.loki-level-warn   { background: #4a3800; color: #e5c07b; }
.loki-level-info   { background: #0d3a4a; color: #56b6c2; }
.loki-level-debug  { background: #2a2a2a; color: #7c8080; border: 1px solid #444; }
.loki-level-trace  { background: #2a2a2a; color: #7c8080; border: 1px solid #444; }
.loki-level-other  { background: #2a2a2a; color: #9e9e9e; border: 1px solid #444; }

.loki-logger {
    color: #6db33f;
    font-size: 0.7rem;
}

.loki-entry {
    padding: 2px 16px;
    color: #d4d4d4;
    white-space: pre-wrap;
    word-break: break-all;
}

.loki-entry:hover {
    background: #252525;
}

.loki-empty {
    padding: 14px 16px;
    color: #666;
    font-style: italic;
    background: #1e1e1e;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.77rem;
}

.analysis-text {
    padding: 14px 16px;
}

/* ── Markdown Body ── */
.markdown-body { font-size: 0.88rem; line-height: 1.7; color: #333; }
.markdown-body h2 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #34302d;
    margin: 14px 0 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #eee;
}
.markdown-body h2:first-child { margin-top: 0; }
.markdown-body h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #34302d;
    margin: 10px 0 4px;
}
.markdown-body p  { margin: 0 0 8px; }
.markdown-body ul,
.markdown-body ol { margin: 4px 0 8px 0; padding-left: 24px; }
.markdown-body ol { list-style-type: decimal; }
.markdown-body ul { list-style-type: disc; }
.markdown-body ol ul { margin: 4px 0 4px 0; padding-left: 20px; list-style-type: circle; }
.markdown-body li { margin-bottom: 3px; }
.markdown-body strong { font-weight: 700; color: #34302d; }
.markdown-body h1 {
    font-size: 1rem;
    font-weight: 700;
    color: #34302d;
    margin: 14px 0 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #eee;
}
.markdown-body h4 {
    font-size: 0.86rem;
    font-weight: 700;
    color: #34302d;
    margin: 10px 0 4px;
}
.markdown-body code {
    background: #f0f0f0;
    padding: 1px 5px;
    border-radius: 3px;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.85em;
    color: #c7254e;
}
.markdown-body pre.md-code-block {
    background: #282c34;
    color: #abb2bf;
    padding: 0;
    border-radius: 4px;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.8rem;
    line-height: 1.55;
    overflow-x: auto;
    margin: 6px 0 10px;
    white-space: pre;
}
.markdown-body pre.md-code-block code {
    background: none;
    padding: 12px 14px;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
    display: block;
}
.markdown-body blockquote {
    border-left: 3px solid #6db33f;
    margin: 6px 0 10px;
    padding: 4px 12px;
    background: #f8f8f8;
    color: #555;
    border-radius: 0 3px 3px 0;
}
.markdown-body blockquote p { margin: 0; }
.markdown-body hr {
    border: none;
    border-top: 1px solid #e4e4e4;
    margin: 12px 0;
}
.markdown-body table.md-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
    margin: 6px 0 12px;
}
.markdown-body table.md-table th,
.markdown-body table.md-table td {
    border: 1px solid #e0e0e0;
    padding: 5px 10px;
    text-align: left;
    vertical-align: top;
}
.markdown-body table.md-table th {
    background: #f5f5f5;
    font-weight: 700;
    color: #34302d;
}
.markdown-body table.md-table tr:nth-child(even) td {
    background: #fafafa;
}

/* ── Firing List ── */
.firing-list-section {
    margin-top: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    overflow: hidden;
}

.firing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.firing-table thead tr {
    background: #fafafa;
    border-bottom: 1px solid #e4e4e4;
}

.firing-table th {
    padding: 8px 14px;
    text-align: left;
    font-weight: 600;
    color: #555;
    font-size: 0.8rem;
}

.firing-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.12s;
}

.firing-table tbody tr:last-child { border-bottom: none; }
.firing-table tbody tr:hover { background: #f5f5f5; }

.firing-table tbody tr.active { background: #fdf2f2; }
.firing-table tbody tr.active td { color: #a94442; font-weight: 600; }
.firing-table tbody tr.active td:first-child { border-left: 3px solid #a94442; }

.firing-table td {
    padding: 9px 14px;
    vertical-align: middle;
}

.firing-status-cell {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.8rem;
    color: #c0392b;
}

/* ── Code Review ── */
.commit-url-section,
.changed-files-section {
    margin-bottom: 12px;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    overflow: hidden;
}

.commit-link {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 9px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
}
.commit-link:last-child { border-bottom: none; }
.commit-link:hover { background: #f8f8f8; }

.commit-sha {
    flex-shrink: 0;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.75rem;
    color: #0074d9;
    background: #eef4ff;
    padding: 1px 6px;
    border-radius: 3px;
}

.commit-message-text {
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compare-link {
    font-size: 0.78rem;
    color: #0074d9;
    text-decoration: none;
    font-weight: 500;
}
.compare-link:hover { text-decoration: underline; }

.commit-ext-icon {
    flex-shrink: 0;
    font-size: 0.78rem;
    color: #aaa;
    margin-left: auto;
}
.commit-link:hover .commit-ext-icon { color: #0074d9; }

.commit-url-text {
    display: block;
    font-size: 0.78rem;
    color: #0074d9;
    word-break: break-all;
}
.commit-url-text:hover { text-decoration: underline; }

/* Changed files */
.file-row { border-bottom: 1px solid #f0f0f0; }
.file-row:last-child { border-bottom: none; }

.file-row-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.12s;
}
.file-row-header:hover { background: #f5f5f5; }

.file-row-expand { font-size: 0.7rem; color: #888; width: 12px; flex-shrink: 0; }
.file-row-name {
    flex: 1;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.82rem;
    color: #333;
    word-break: break-all;
}
.file-row-stats { font-size: 0.78rem; font-family: "SFMono-Regular", Consolas, monospace; white-space: nowrap; }
.diff-stat-add    { color: #27ae60; font-weight: 600; }
.diff-stat-remove { color: #c0392b; font-weight: 600; }

.file-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.file-badge-new     { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.file-badge-modify  { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.file-badge-removed { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.file-diff {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.file-diff.expanded { max-height: 3000px; }

.diff-block {
    margin: 0;
    padding: 10px 14px;
    background: #1e1e1e;
    font-size: 0.78rem;
    line-height: 1.6;
    overflow-x: auto;
    border-top: 1px solid #333;
    white-space: pre;
}
.diff-add     { display: block; background: rgba(39,174,96,0.15);  color: #98c379; }
.diff-remove  { display: block; background: rgba(192,57,43,0.15);  color: #e06c75; }
.diff-hunk    { display: block; color: #56b6c2; }
.diff-context { display: block; color: #abb2bf; }
.diff-meta    { display: block; color: #888; }

/* Commit history table */
.commit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.commit-table thead tr { background: #fafafa; border-bottom: 1px solid #e4e4e4; }
.commit-table th { padding: 8px 14px; text-align: left; font-weight: 600; color: #555; font-size: 0.8rem; }
.commit-table tbody tr { border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.12s; }
.commit-table tbody tr:last-child { border-bottom: none; }
.commit-table tbody tr:hover { background: #f5f5f5; }
.commit-table tbody tr.active { background: #f0f4fd; }
.commit-table tbody tr.active td { color: #1a56c4; font-weight: 600; }
.commit-table tbody tr.active td:first-child { border-left: 3px solid #1a56c4; }
.commit-table td { padding: 9px 14px; vertical-align: middle; }
.commit-table .commit-msg-cell { max-width: 400px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Notification ── */
.notification-container {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

@keyframes notificationFadeUp {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-20px); }
}

.notification {
    background: #34302d;
    color: #fff;
    padding: 12px 18px;
    border-radius: 4px;
    border-left: 4px solid #a94442;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    min-width: 300px;
    max-width: 420px;
    animation: notificationFadeUp 0.5s ease forwards;
    animation-delay: 4s;
}

.notification-commit { border-left-color: #1a56c4; }
