@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --success: #16a34a;
    --success-light: #dcfce7;
    --danger: #dc2626;
    --danger-light: #fee2e2;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #f1f5f9;
    --surface: #ffffff;
    --border: #e2e8f0;
    --sidebar-w: 240px;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, .12)
}

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

html, body, #root {
    height: 100%
}

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6
}

button {
    cursor: pointer;
    font-family: inherit
}

input, select, textarea {
    font-family: inherit
}

a {
    text-decoration: none;
    color: inherit
}

.layout {
    display: flex;
    height: 100vh;
    overflow: hidden
}

.sidebar {
    width: var(--sidebar-w);
    background: linear-gradient(180deg, #1e3a8a, #1d4ed8);
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0
}

.sidebar-logo {
    padding: 24px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.sidebar-logo h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px
}

.sidebar-logo span {
    font-size: 11px;
    opacity: .6
}

.sidebar-nav {
    flex: 1;
    padding: 12px 0
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: #ffffffbf;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 0;
    transition: all .15s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left
}

.nav-item:hover {
    background: #ffffff1a;
    color: #fff
}

.nav-item.active {
    background: #ffffff2e;
    color: #fff;
    border-right: 3px solid white
}

.nav-item svg {
    opacity: .85;
    flex-shrink: 0
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0
}

.topbar h1 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text)
}

.content {
    flex: 1;
    overflow-y: auto;
    padding: 28px
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px
}

.kpi-card {
    padding: 20px 24px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow)
}

.kpi-card .num {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1
}

.kpi-card .lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500
}

.kpi-card.total .num {
    color: #1e3a8a
}

.kpi-card.pass .num {
    color: var(--success)
}

.kpi-card.fail .num {
    color: var(--danger)
}

.kpi-card.rate .num {
    color: #7c3aed
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    transition: all .15s
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--primary-dark)
}

.btn-success {
    background: var(--success);
    color: #fff
}

.btn-success:hover {
    background: #15803d
}

.btn-danger {
    background: var(--danger);
    color: #fff
}

.btn-danger:hover {
    background: #b91c1c
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary)
}

.btn-outline:hover {
    background: var(--primary-light)
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border)
}

.btn-ghost:hover {
    background: var(--bg)
}

.btn-sm {
    padding: 5px 11px;
    font-size: 12.5px
}

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700
}

.badge-pass {
    background: var(--success-light);
    color: var(--success)
}

.badge-fail {
    background: var(--danger-light);
    color: var(--danger)
}

.badge-running {
    background: #dbeafe;
    color: #1d4ed8
}

.badge-error {
    background: var(--warning-light);
    color: var(--warning)
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius)
}

table {
    width: 100%;
    border-collapse: collapse
}

th {
    background: #f8fafc;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1.5px solid var(--border)
}

td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px
}

tr:last-child td {
    border-bottom: none
}

tr:hover td {
    background: #fafbff
}

.form-group {
    margin-bottom: 18px
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px
}

.form-control {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text);
    background: #fff;
    transition: border-color .15s;
    outline: none
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #2563eb1f
}

select.form-control {
    cursor: pointer
}

.form-hint {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.step-row {
    display: grid;
    grid-template-columns: 36px 140px 1fr 1fr 1fr auto;
    gap: 8px;
    align-items: center;
    background: #f8fafc;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border)
}

.step-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center
}

.status-PASSED {
    color: var(--success)
}

.status-FAILED {
    color: var(--danger)
}

.status-RUNNING {
    color: var(--primary)
}

.status-DONE {
    color: var(--success)
}

.status-ERROR {
    color: var(--danger)
}

.monitor-tc {
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    border-left: 4px solid var(--border);
    margin-bottom: 10px;
    transition: border-color .2s
}

.monitor-tc.PASSED {
    border-left-color: var(--success)
}

.monitor-tc.FAILED {
    border-left-color: var(--danger)
}

.monitor-tc.RUNNING {
    border-left-color: var(--primary);
    animation: pulse 1.5s infinite
}

@keyframes pulse {
    0%, to {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 999px;
    transition: width .4s ease
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted)
}

.empty-state svg {
    margin-bottom: 12px;
    opacity: .3
}

.empty-state p {
    font-size: 15px
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: #00000073;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg)
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border)
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 700
}

.modal-body {
    padding: 24px
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

.lightbox {
    position: fixed;
    inset: 0;
    background: #000000e0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px #00000080
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer
}

.upload-zone {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    color: var(--text-muted)
}

.upload-zone:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary)
}

.upload-zone.dragover {
    border-color: var(--primary);
    background: var(--primary-light)
}

.flex {
    display: flex
}

.items-center {
    align-items: center
}

.justify-between {
    justify-content: space-between
}

.gap-2 {
    gap: 8px
}

.gap-3 {
    gap: 12px
}

.mb-4 {
    margin-bottom: 16px
}

.mb-6 {
    margin-bottom: 24px
}

.mt-4 {
    margin-top: 16px
}

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

.text-sm {
    font-size: 12.5px
}

.font-bold {
    font-weight: 700
}

.w-full {
    width: 100%
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.nl-tabs {
    display: flex;
    gap: 0;
    margin: 20px 0 0;
    border-bottom: 2px solid var(--border)
}

.nl-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s
}

.nl-tab:hover {
    color: var(--text)
}

.nl-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary)
}

.nl-panel {
    margin-top: 16px
}

.nl-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #6366f114, #a855f714);
    border-radius: 8px;
    font-size: 13px;
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, .15)
}

.nl-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: Segoe UI, system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    resize: vertical;
    min-height: 200px;
    background: #fafbff;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s
}

.nl-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #6366f11f;
    background: #fff
}

.nl-textarea::placeholder {
    color: #b0b8c8;
    font-size: 13px;
    line-height: 1.8
}

.nl-warnings {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.nl-warning-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 12px;
    background: #fff8ee;
    border: 1px solid #f0d78e;
    border-radius: 8px;
    font-size: 12.5px;
    color: #8b6914
}

.nl-warning-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #d4a017
}

.nl-preview {
    margin-top: 16px
}

.nl-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #10b9810f;
    border: 1px solid rgba(16, 185, 129, .2);
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-size: 13.5px
}

.nl-steps-preview {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden
}

.nl-step-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    transition: background .15s
}

.nl-step-card:last-child {
    border-bottom: none
}

.nl-step-card:hover {
    background: #f8fafc
}

.nl-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: #fff
}

.nl-step-info {
    flex: 1;
    min-width: 0
}

.nl-step-action {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    background: #6366f11a;
    color: var(--primary);
    margin-right: 8px
}

.nl-step-desc {
    font-size: 13.5px;
    color: var(--text)
}

.nl-step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px
}

.nl-step-details code {
    font-size: 11.5px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-family: Cascadia Code, Fira Code, monospace;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis
}

.ai-status-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5
}

.ai-status-banner.warning {
    background: linear-gradient(135deg, #fef3c7, #fef9e7);
    border: 1px solid #f59e0b;
    color: #92400e
}

.ai-status-banner.success {
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    border: 1px solid var(--success);
    color: #166534
}

.ai-status-banner a {
    color: var(--primary);
    font-weight: 600
}

.ai-status-banner code {
    background: #00000014;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px
}

.wizard-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px #0000000f
}

.wiz-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all .2s
}

.wiz-step.active {
    color: var(--primary);
    font-weight: 700
}

.wiz-step.done {
    color: var(--success)
}

.wiz-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: var(--bg-secondary);
    color: var(--text-muted);
    transition: all .2s
}

.wiz-step.active .wiz-num {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px #2563eb4d
}

.wiz-step.done .wiz-num {
    background: var(--success);
    color: #fff
}

.wiz-arrow {
    color: var(--text-muted);
    opacity: .4;
    flex-shrink: 0
}

.ai-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ai-card {
    padding: 24px
}

.ai-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px
}

.drop-zone {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--bg-secondary)
}

.drop-zone:hover, .drop-zone.drag-over {
    border-color: var(--primary);
    background: var(--primary-light)
}

.drop-zone p {
    margin: 10px 0 4px;
    font-size: 14px;
    color: var(--text)
}

.drop-zone span {
    font-size: 12px;
    color: var(--text-muted)
}

.drop-zone svg {
    color: var(--text-muted)
}

.preview-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px
}

.preview-item {
    position: relative;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border)
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dc2626e6;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.ai-textarea {
    font-size: 13.5px;
    line-height: 1.6;
    resize: vertical;
    min-height: 160px
}

.ai-generate-btn {
    font-size: 15px !important;
    padding: 12px 24px !important;
    gap: 8px;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #7c3aed, #2563eb) !important;
    border: none !important;
    font-weight: 700 !important;
    transition: all .3s !important
}

.ai-generate-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px #6366f159 !important
}

.ai-generate-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px
}

.ai-processing {
    padding: 60px 24px;
    text-align: center
}

.ai-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.ai-loader h3 {
    color: var(--primary);
    font-size: 18px
}

.ai-loader p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6
}

.spin {
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.ai-steps-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px
}

.ai-steps-table th {
    background: var(--bg-secondary);
    text-align: left;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-bottom: 2px solid var(--border)
}

.ai-steps-table td {
    padding: 6px 8px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle
}

.ai-steps-table tr:hover {
    background: #fafbfe
}

.ai-steps-table .step-num {
    text-align: center;
    font-weight: 700;
    color: var(--text-muted)
}

.form-sm {
    font-size: 12.5px !important;
    padding: 5px 8px !important;
    border-radius: 6px !important
}

.btn-icon {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all .15s
}

.btn-icon:hover {
    background: var(--bg-secondary);
    color: var(--text)
}

.btn-icon.danger:hover {
    background: var(--danger-light);
    color: var(--danger)
}

@media(max-width:768px) {
    .ai-input-grid {
        grid-template-columns: 1fr
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--primary);
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .15s
}

.breadcrumb-item:hover {
    background: var(--primary-light);
    text-decoration: underline
}

.breadcrumb-item.active {
    color: var(--text);
    cursor: default;
    font-weight: 600
}

.breadcrumb-item.active:hover {
    background: transparent;
    text-decoration: none
}

.breadcrumb-sep {
    color: var(--text-muted);
    opacity: .5;
    flex-shrink: 0
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #7c3aed);
    padding: 20px
}

.login-card {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px #00000040;
    overflow: hidden
}

.login-header {
    text-align: center;
    padding: 32px 24px 20px;
    background: linear-gradient(135deg, #f8fafc, #eff6ff)
}

.login-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 4px
}

.login-header p {
    font-size: 13px;
    color: var(--text-muted)
}

.login-tabs {
    display: flex;
    border-bottom: 2px solid var(--border)
}

.login-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s
}

.login-tab:hover {
    color: var(--text)
}

.login-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary)
}

.login-form {
    padding: 24px
}

.login-footer {
    text-align: center;
    padding: 0 24px 24px;
    font-size: 13px;
    color: var(--text-muted)
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 13px
}

.link-btn:hover {
    text-decoration: underline
}

.input-icon {
    position: relative
}

.input-icon-left {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none
}

.input-icon-right {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px
}

.sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 12px 16px
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 8px
}

.sidebar-user-info {
    flex: 1;
    min-width: 0
}

.sidebar-user-email {
    font-size: 12px;
    color: #fffc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sidebar-admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    color: #fbbf24;
    margin-top: 2px
}

.sidebar-logout {
    background: #ffffff1a;
    border: none;
    color: #fff9;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .15s;
    flex-shrink: 0
}

.sidebar-logout:hover {
    background: #fff3;
    color: #fff
}