@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=IBM+Plex+Mono:wght@400;600&display=swap");

:root {
    color-scheme: light;
    --bg: #f3f6f4;
    --bg-glow: radial-gradient(circle at top, rgba(30, 95, 97, 0.12), transparent 55%);
    --bg-grid: linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px);
    --card: #ffffff;
    --text: #1d2327;
    --muted: #5a6570;
    --accent: #e4572e;
    --accent-strong: #c4461f;
    --border: #d4dadf;
    --shadow: 0 14px 40px rgba(29, 35, 39, 0.08);
    --thinking: #f6c453;
    --tool: #2f8f9d;
    --success: #2c9a4b;
    --failure: #d64545;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    background-image: var(--bg-glow), var(--bg-grid);
    background-size: auto, 90px 90px;
    color: var(--text);
    min-height: 100vh;
}

.app-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 320px;
    gap: 0;
}

.sidebar {
    background: #0f1417;
    color: #f1f5f9;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #f8fafc;
}

.brand-mark {
    background: var(--accent);
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.brand-text {
    font-size: 1.15rem;
}

.sidebar-nav {
    display: grid;
    gap: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.nav-item:hover {
    background: rgba(226, 232, 240, 0.08);
}

.sidebar-footer {
    margin-top: auto;
    display: grid;
    gap: 14px;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(226, 232, 240, 0.08);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 232, 240, 0.2);
    font-weight: 700;
    color: #f8fafc;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.user-email {
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.7);
}

.workspace {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 28px 36px 40px;
    gap: 24px;
}

.workspace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.workspace-title {
    font-size: 1.7rem;
    font-weight: 700;
}

.workspace-subtitle {
    color: var(--muted);
}

.workspace-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.workspace-body {
    display: grid;
    gap: 24px;
}

.inspector {
    background: rgba(255, 255, 255, 0.92);
    border-left: 1px solid var(--border);
    padding: 28px 22px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.inspector-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.inspector-json {
    background: #0f172a;
    color: #e2e8f0;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: pre-wrap;
    overflow-x: auto;
}

.inspector-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.card {
    width: 100%;
    background: var(--card);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.card-header h1 {
    margin: 0 0 8px;
    font-size: 1.8rem;
}

.card-header p {
    margin: 0;
    color: var(--muted);
}

.form-stack {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

label {
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
}

input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 1rem;
}

select {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 1rem;
    background: #fff;
}

input:focus {
    outline: none;
    border-color: #0969da;
    box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
}

.btn {
    margin-top: 8px;
    padding: 10px 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-ghost {
    background: #f3f4f6;
    color: #11171a;
    margin-top: 0;
}

.btn-ghost:hover {
    background: #e5e7eb;
}

.btn-outline {
    background: transparent;
    color: #11171a;
    border: 1px solid var(--border);
    margin-top: 0;
}

.btn-outline:hover {
    background: #f8f8f8;
}

.btn-secondary {
    background: #11171a;
}

.btn-secondary:hover {
    background: #0b0f11;
}

.btn:hover {
    background: var(--accent-strong);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-error {
    color: #b91c1c;
    background: #fee2e2;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.form-success {
    color: #166534;
    background: #dcfce7;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.form-footer {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    font-size: 0.95rem;
}

.form-footer a {
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 600;
}

.dashboard {
    width: 100%;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.detail {
    background: #ffffff;
    border-radius: 8px;
    padding: 14px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--border);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--muted);
}

.detail-value {
    font-weight: 600;
}

.info-panel {
    margin-top: 24px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.agent-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.panel-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.panel-title {
    font-weight: 700;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-section {
    display: grid;
    gap: 12px;
}

.section-title {
    font-weight: 700;
    font-size: 1rem;
}

.chat-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.chat-step-list {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.chat-step {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    display: grid;
    gap: 6px;
}

.chat-step-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.chat-link {
    color: inherit;
    text-decoration: underline;
}

.chat-window {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 18px;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: grid;
    gap: 16px;
    padding-right: 8px;
}

.chat-bubble {
    padding: 14px 16px;
    border-radius: 14px;
    max-width: 75%;
    display: grid;
    gap: 8px;
}

.chat-bubble.user {
    justify-self: end;
    background: #0f172a;
    color: #f8fafc;
}

.chat-bubble.agent {
    justify-self: start;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.chat-meta {
    font-size: 0.75rem;
    color: var(--muted);
}

.chat-composer {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 12px 14px;
    font-size: 1rem;
    min-height: 46px;
}

.chat-status {
    font-size: 0.8rem;
    color: var(--muted);
}

.chat-text {
    white-space: pre-wrap;
}

.chat-suggestion {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.85rem;
}

.typing-indicator {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #64748b;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.step-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.step-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #fb7185, #f97316);
    animation: progress 1.5s infinite linear;
}

.suggestion-list {
    display: grid;
    gap: 8px;
}

.suggestion {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.85rem;
}

.related-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.85rem;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.agent-metrics {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.82rem;
}

.metric-label {
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.metric-value {
    font-weight: 700;
    font-size: 0.95rem;
}

.tool-score-list {
    display: grid;
    gap: 6px;
    margin-top: 8px;
}

.tool-score-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 6px 8px;
    border-radius: 8px;
    background: #f1f5f9;
}

.trace-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.85rem;
}

.transparency-panel {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 10px;
}

.explain-card {
    margin-top: 16px;
}

.warn-pill {
    background: #fef2f2;
    color: #b91c1c;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.insight-card {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border-radius: 14px;
    border: 1px solid #fde68a;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.insight-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.insight-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.insight-meta {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 6px;
}

.wizard {
    display: grid;
    gap: 18px;
}

.wizard-steps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wizard-step {
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    font-weight: 600;
    font-size: 0.85rem;
}

.wizard-step.active {
    background: #11171a;
    color: #ffffff;
}

.wizard-panel {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 18px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.template-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.template-card.active {
    border-color: #11171a;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
}

.tool-pill {
    background: #ecfeff;
    border: 1px solid #cbd5f5;
    color: #0f172a;
}

.runs-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.run-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.run-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.runs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.run-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.run-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(29, 35, 39, 0.12);
}

.run-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.run-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.run-meta {
    font-size: 0.9rem;
    color: var(--muted);
}

.run-card-body {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.run-snippet {
    font-size: 0.9rem;
    color: var(--text);
    background: #f3f4f6;
    padding: 8px 10px;
    border-radius: 8px;
}

.run-error {
    font-size: 0.9rem;
    color: #b42318;
    background: #fee4e2;
    padding: 8px 10px;
    border-radius: 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    background: #9aa0a6;
}

.status-pending {
    background: #677483;
}

.status-running {
    background: var(--tool);
}

.status-completed {
    background: var(--success);
}

.status-success {
    background: var(--success);
}

.status-error {
    background: var(--failure);
}

.status-failed {
    background: var(--failure);
}

.status-retry {
    background: var(--thinking);
    color: #1d2327;
}

.run-detail {
    width: min(1200px, 94vw);
}

.run-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    background: #f8f8f8;
    border: 1px solid var(--border);
}

.run-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.run-value {
    font-weight: 600;
}

.run-output-panel {
    margin-top: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 16px;
    box-shadow: var(--shadow);
}

.run-output {
    margin: 8px 0 0;
    font-family: "IBM Plex Mono", "Segoe UI", monospace;
    font-size: 0.85rem;
    white-space: pre-wrap;
}

.timeline {
    margin-top: 28px;
    display: grid;
    gap: 16px;
    position: relative;
    padding-left: 22px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(17, 24, 39, 0.1);
}

.timeline-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.timeline-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1px solid var(--border);
    background: #f8fafc;
    color: var(--muted);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.2s ease;
}

.filter-btn.active {
    background: #11171a;
    color: #ffffff;
    border-color: #11171a;
}

.filter-btn:hover {
    transform: translateY(-1px);
}

.timeline-item {
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: fade-up 0.4s ease both;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d9e0e6;
    box-shadow: 0 0 0 6px rgba(217, 224, 230, 0.35);
}

.timeline-thinking::before {
    background: var(--thinking);
    box-shadow: 0 0 0 6px rgba(246, 196, 83, 0.3);
}

.timeline-tool::before {
    background: var(--tool);
    box-shadow: 0 0 0 6px rgba(47, 143, 157, 0.25);
}

.timeline-success::before {
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(44, 154, 75, 0.25);
}

.timeline-failure::before {
    background: var(--failure);
    box-shadow: 0 0 0 6px rgba(214, 69, 69, 0.25);
}

.timeline-result::before {
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(44, 154, 75, 0.25);
}

.timeline-error::before {
    background: var(--failure);
    box-shadow: 0 0 0 6px rgba(214, 69, 69, 0.25);
}

.timeline-retry::before {
    background: var(--thinking);
    box-shadow: 0 0 0 6px rgba(246, 196, 83, 0.25);
}

.timeline-item summary {
    list-style: none;
    cursor: pointer;
}

.timeline-item summary::-webkit-details-marker {
    display: none;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(120deg, rgba(17, 24, 39, 0.02), transparent 60%);
}

.timeline-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f4f7;
}

.timeline-thinking .timeline-icon {
    background: rgba(246, 196, 83, 0.2);
}

.timeline-tool .timeline-icon {
    background: rgba(47, 143, 157, 0.2);
}

.timeline-result .timeline-icon,
.timeline-success .timeline-icon {
    background: rgba(44, 154, 75, 0.2);
}

.timeline-error .timeline-icon,
.timeline-failure .timeline-icon {
    background: rgba(214, 69, 69, 0.2);
}

.timeline-retry .timeline-icon {
    background: rgba(246, 196, 83, 0.2);
}

.timeline-icon svg {
    width: 20px;
    height: 20px;
    fill: #1d2327;
}

.timeline-title {
    font-weight: 700;
    font-size: 1rem;
}

.timeline-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
}

.timeline-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-meta {
    font-size: 0.85rem;
    color: var(--muted);
}

.timeline-time {
    font-size: 0.8rem;
    color: var(--muted);
}

.timeline-body {
    padding: 0 18px 18px;
}

.timeline-actions {
    display: flex;
    gap: 10px;
    padding: 0 18px 12px;
}

.timeline-sections {
    display: grid;
    gap: 14px;
}

.timeline-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e4e7eb;
}

.timeline-section-title {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #11171a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.timeline-thought {
    font-size: 0.92rem;
    color: #1d2327;
}

.timeline-json pre {
    font-family: "IBM Plex Mono", "Segoe UI", monospace;
    font-size: 0.8rem;
    white-space: pre-wrap;
    margin: 0;
    background: #0f172a;
    color: #e2e8f0;
    padding: 12px 14px;
    border-radius: 10px;
    overflow-x: auto;
}

.json-key {
    color: #38bdf8;
}

.json-string {
    color: #a7f3d0;
}

.json-number {
    color: #fca5a5;
}

.json-boolean {
    color: #fcd34d;
}

.json-null {
    color: #cbd5f5;
}

.hidden {
    display: none;
}

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

.agent-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.agent-meta {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.muted {
    color: var(--muted);
}

.info-panel h2 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.info-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

@media (max-width: 720px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: sticky;
        top: 0;
        z-index: 5;
        flex-direction: row;
        align-items: center;
        overflow-x: auto;
        padding: 16px;
    }

    .sidebar-nav {
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        display: grid;
        gap: 8px;
    }

    .sidebar-footer {
        display: none;
    }

    .workspace {
        padding: 20px;
    }

    .inspector {
        display: none;
    }

    .run-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
