@import url('/qe/css/tokens.css');
/* CI-Manual S.12: Hausschrift = Open Sans */
/* Open Sans loaded locally is unavailable offline; legal decision spec 005: system fallback, no third-party font transfer */

:root {
    --qe-primary: #1a9988;
    --qe-primary-dark: #157a6c;
    --qe-primary-light: #e6f7f5;
    --qe-accent: #3694B3;
    --qe-green: #7AE594;
    --qe-dark: #1e293b;
    --qe-dark-blue: #0f2a4a;
    --qe-navy: #0c2240;
    --qe-text: #334155;
    --qe-text-light: #94a3b8;
    --qe-bg: #f4f7fa;
    --qe-card: #ffffff;
    --qe-border: #e2e8f0;
    --qe-success: #22c55e;
    --qe-success-bg: #dcfce7;
    --qe-success-border: #bbf7d0;
    --qe-danger: #ef4444;
    --qe-danger-bg: #fee2e2;
    --qe-danger-border: #fecaca;
    --qe-warning: #f59e0b;
    --qe-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --qe-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --qe-shadow-md: 0 4px 12px -2px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
    --qe-shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.12), 0 4px 8px -4px rgba(0,0,0,0.08);
    --qe-radius: 12px;
    --qe-radius-sm: 8px;
    --qe-radius-xs: 6px;
    --qe-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --qe-gradient-brand: linear-gradient(90deg, #4DBFA0, #3694B3);
    --qe-gradient-btn: linear-gradient(90deg, #4DBFA0 0%, #3694B3 100%);
    --qe-gradient-header: #0f2a4a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--qe-bg);
    color: var(--qe-text);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

body::after {
    content: '';
    position: fixed;
    bottom: -120px;
    right: -120px;
    width: 750px;
    height: 720px;
    background: url('/qe/images/keyvisual-q.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
}


/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: url('/qe/images/header-bg.png') no-repeat center center;
    background-size: cover;
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(12, 34, 64, 0.3);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--qe-transition);
}

.sticky-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 34, 64, 0.65);
    z-index: 0;
}

.sticky-header > * {
    position: relative;
    z-index: 1;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
}

.header-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}

.header-title span {
    color: var(--qe-green);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.7rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--qe-green);
    background: rgba(122, 229, 148, 0.12);
    border: 1px solid rgba(122, 229, 148, 0.2);
    border-radius: 100px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* ═══════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════ */

.main-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
}


/* ═══════════════════════════════════════════
   SETTINGS TOOLBAR
   ═══════════════════════════════════════════ */

.settings-toolbar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.settings-toolbar .section-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--qe-text-light);
    margin-right: 0.25rem;
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn-qe-primary {
    background: var(--qe-gradient-btn);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    padding: 0.45rem 1.15rem;
    border-radius: var(--qe-radius-xs);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--qe-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-qe-primary:hover {
    background-position: 100% 0;
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 153, 136, 0.35);
    transform: translateY(-1px);
}

.btn-qe-outline {
    background: var(--qe-card);
    color: var(--qe-text);
    border: 1px solid var(--qe-border);
    padding: 0.45rem 1.15rem;
    border-radius: var(--qe-radius-xs);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--qe-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-qe-outline:hover {
    background: var(--qe-bg);
    border-color: var(--qe-primary);
    color: var(--qe-primary);
}

.btn-qe-danger {
    background: transparent;
    color: var(--qe-danger);
    border: 1px solid var(--qe-danger-border);
    padding: 0.3rem 0.65rem;
    border-radius: var(--qe-radius-xs);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--qe-transition);
}

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


/* ═══════════════════════════════════════════
   CHECK TABLE
   ═══════════════════════════════════════════ */

.check-table-wrapper {
    background: var(--qe-card);
    border-radius: var(--qe-radius);
    box-shadow: var(--qe-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--qe-border);
}

.check-table-wrapper .table {
    margin-bottom: 0;
    font-size: 0.82rem;
}

.check-table-wrapper .table thead th {
    background: var(--qe-bg);
    border-bottom: 2px solid var(--qe-border);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--qe-text-light);
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

.check-table-wrapper .table tbody td {
    padding: 0.65rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--qe-border);
    color: var(--qe-text);
}

.check-table-wrapper .table tbody tr:hover {
    background: rgba(26, 153, 136, 0.03);
}

.check-table-wrapper .table tbody tr:last-child td {
    border-bottom: none;
}


/* ═══════════════════════════════════════════
   STATUS GRID
   ═══════════════════════════════════════════ */

.grid-status-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.group-block {
    margin-bottom: 0;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--qe-border);
    cursor: pointer;
    user-select: none;
}

.group-header:hover {
    border-bottom-color: var(--qe-primary);
}

.group-chevron {
    font-size: 0.75rem;
    color: var(--qe-text-light);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.group-block.collapsed .group-chevron {
    transform: rotate(-90deg);
}

.group-block .status-grid {
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
}

.group-block.collapsed .status-grid {
    display: none;
}

.group-block.collapsed .group-header {
    margin-bottom: 0;
    border-bottom-color: transparent;
}

.group-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--qe-dark-blue);
    margin: 0;
    letter-spacing: -0.01em;
}

.group-header .group-count {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--qe-text-light);
    background: var(--qe-bg);
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
    border: 1px solid var(--qe-border);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 0.625rem;
}

.status-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--qe-radius-sm);
    padding: 0.75rem 0.625rem;
    text-align: center;
    cursor: pointer;
    transition: var(--qe-transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.status-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--qe-radius-sm) var(--qe-radius-sm) 0 0;
}

.status-box.status-ok {
    background: var(--qe-card);
    border-color: rgba(34, 197, 94, 0.15);
    box-shadow: var(--qe-shadow-sm);
}

.status-box.status-ok::before {
    background: var(--qe-gradient-brand);
}

.status-box.status-error {
    background: var(--qe-card);
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.15), 0 0 4px rgba(239, 68, 68, 0.1);
}

.status-box.status-error::before {
    background: var(--qe-danger);
}

.status-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--qe-shadow-md);
}

.status-box.status-ok:hover {
    border-color: rgba(34, 197, 94, 0.35);
}

.status-box.status-error:hover {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.25), 0 2px 8px rgba(239, 68, 68, 0.15);
}

.status-box .status-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-bottom: 0.4rem;
    flex-shrink: 0;
}

.status-box.status-ok .status-indicator {
    background: var(--qe-success);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.status-box.status-error .status-indicator {
    background: var(--qe-danger);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
    animation: pulse-error 2s infinite;
}

@keyframes pulse-error {
    0%, 100% { box-shadow: 0 0 6px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 14px rgba(239, 68, 68, 0.6); }
}

.status-box .status-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--qe-dark);
    line-height: 1.3;
    margin-bottom: 0.3rem;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.status-box .status-dim {
    font-size: 0.6rem;
    color: var(--qe-text-light);
    margin-bottom: 0.2rem;
    word-break: break-word;
}

.status-box .status-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--qe-dark);
    font-variant-numeric: tabular-nums;
}

.status-box.status-ok .status-value {
    color: var(--qe-success);
}

.status-box.status-error .status-value {
    color: var(--qe-danger);
}

.status-box .mute-badge {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    font-size: 0.55rem;
    color: var(--qe-warning);
}


/* ═══════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════ */

#refreshProgressBarContainer {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    z-index: 1029;
    overflow: hidden;
}

#refreshProgressBar {
    height: 100%;
    width: 0%;
    background: var(--qe-gradient-brand);
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}


/* ═══════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════ */

.modal-content {
    border: none;
    border-radius: var(--qe-radius);
    box-shadow: var(--qe-shadow-lg);
    overflow: hidden;
}

.modal-header {
    background: url('/qe/images/header-bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    border-bottom: none;
    padding: 1.125rem 1.5rem;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 34, 64, 0.7);
    z-index: 0;
    border-radius: var(--qe-radius) var(--qe-radius) 0 0;
}

.modal-header > * {
    position: relative;
    z-index: 1;
}

.modal-header .modal-title {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--qe-border);
    padding: 0.875rem 1.5rem;
    background: var(--qe-bg);
}

.modal-dialog {
    display: flex;
    min-height: calc(100% - 1rem);
    align-items: center;
    margin: 0.5rem auto;
}

.modal-dialog.wide-modal {
    max-width: 900px;
}


/* ═══════════════════════════════════════════
   FORM CONTROLS
   ═══════════════════════════════════════════ */

.form-label {
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--qe-text);
    margin-bottom: 0.3rem;
}

.form-control,
.form-select {
    border-radius: var(--qe-radius-xs);
    border: 1px solid var(--qe-border);
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem;
    transition: var(--qe-transition);
    color: var(--qe-text);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--qe-primary);
    box-shadow: 0 0 0 3px rgba(26, 153, 136, 0.12);
}

input[readonly] {
    background-color: var(--qe-bg);
    cursor: not-allowed;
    color: var(--qe-text-light);
}

.form-check-input:checked {
    background-color: var(--qe-primary);
    border-color: var(--qe-primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(26, 153, 136, 0.12);
    border-color: var(--qe-primary);
}


/* ═══════════════════════════════════════════
   NAV TABS (Global Config Modal)
   ═══════════════════════════════════════════ */

.nav-tabs {
    border-bottom: 2px solid var(--qe-border);
}

.nav-tabs .nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--qe-text-light);
    border: none;
    padding: 0.7rem 1.15rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--qe-transition);
}

.nav-tabs .nav-link:hover {
    color: var(--qe-primary);
    border-bottom-color: rgba(26, 153, 136, 0.3);
}

.nav-tabs .nav-link.active {
    color: var(--qe-primary);
    border-bottom-color: var(--qe-primary);
    background: transparent;
}


/* ═══════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════ */

.alert-info {
    background: var(--qe-primary-light);
    border: 1px solid rgba(26, 153, 136, 0.15);
    color: var(--qe-primary-dark);
    border-radius: var(--qe-radius-sm);
    font-size: 0.82rem;
}


/* ═══════════════════════════════════════════
   TABLE INSIDE MODALS
   ═══════════════════════════════════════════ */

.modal-body .table {
    font-size: 0.82rem;
}

.modal-body .table thead th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--qe-text-light);
    font-weight: 600;
    border-bottom: 2px solid var(--qe-border);
    background: var(--qe-bg);
    padding: 0.6rem 0.7rem;
}

.modal-body .table tbody td {
    vertical-align: middle;
    padding: 0.6rem 0.7rem;
}


/* ═══════════════════════════════════════════
   STATUS ICONS IN TABLE
   ═══════════════════════════════════════════ */

.action-icons {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.action-icons .btn {
    padding: 0.25rem 0.45rem;
    border-radius: var(--qe-radius-xs);
    font-size: 0.78rem;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.6rem;
}

.status-icon.active {
    background: var(--qe-success-bg);
    color: var(--qe-success);
}

.status-icon.disabled {
    background: var(--qe-danger-bg);
    color: var(--qe-danger);
}

.status-icon.muted {
    background: #fef3c7;
    color: var(--qe-warning);
}

.status-icon.unmuted {
    background: var(--qe-bg);
    color: var(--qe-text-light);
}


/* ═══════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--qe-text-light);
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.35;
}

.empty-state p {
    font-size: 0.88rem;
    margin: 0;
}


/* ═══════════════════════════════════════════
   RESPONSIVE / MOBILE
   ═══════════════════════════════════════════ */

@media (max-width: 992px) {
    .main-content {
        padding: 1.25rem;
    }

    .status-grid {
        grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
        gap: 0.5rem;
    }

    .sticky-header {
        padding: 0 1.25rem;
        height: 72px;
    }

    #refreshProgressBarContainer {
        top: 72px;
    }

    .header-title {
        font-size: 0.9rem;
    }

    .header-badge {
        display: none;
    }

    body::after {
        width: 350px;
        height: 340px;
        bottom: -60px;
        right: -60px;
    }
}

@media (max-width: 768px) {
    .sticky-header {
        padding: 0 1rem;
        height: 60px;
    }

    #refreshProgressBarContainer {
        top: 60px;
    }

    .header-logo img {
        height: 24px;
    }

    .header-divider {
        height: 22px;
    }

    .header-title {
        font-size: 0.82rem;
    }

    .main-content {
        padding: 1rem;
    }

    .settings-toolbar {
        gap: 0.4rem;
    }

    .settings-toolbar .btn-qe-primary,
    .settings-toolbar .btn-qe-outline {
        padding: 0.35rem 0.8rem;
        font-size: 0.78rem;
    }

    .status-grid {
        grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
        gap: 0.4rem;
    }

    .status-box {
        padding: 0.5rem;
        border-radius: var(--qe-radius-xs);
    }

    .status-box .status-title {
        font-size: 0.62rem;
    }

    .status-box .status-value {
        font-size: 0.82rem;
    }

    .status-box .status-dim {
        font-size: 0.55rem;
    }

    .group-header h4 {
        font-size: 0.82rem;
    }

    .modal-dialog.wide-modal {
        max-width: 100%;
        margin: 0.5rem;
    }

    body::after {
        width: 250px;
        height: 240px;
        bottom: -40px;
        right: -40px;
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .sticky-header {
        height: 52px;
        padding: 0 0.75rem;
    }

    #refreshProgressBarContainer {
        top: 52px;
    }

    .header-left {
        gap: 0.75rem;
    }

    .header-divider {
        display: none;
    }

    .header-title {
        font-size: 0.75rem;
    }

    .main-content {
        padding: 0.75rem;
    }

    .status-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }

    .status-box {
        padding: 0.4rem;
    }

    .status-box .status-indicator {
        width: 5px;
        height: 5px;
        margin-bottom: 0.3rem;
    }

    .status-box .status-title {
        font-size: 0.58rem;
    }

    .status-box .status-value {
        font-size: 0.72rem;
    }

    .settings-toolbar .section-label {
        display: none;
    }

    body::after {
        display: none;
    }
}


/* ═══════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--qe-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--qe-text-light);
}


/* ═══════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════ */

.badge-qe {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 500;
    border-radius: 100px;
    background: var(--qe-bg);
    color: var(--qe-text-light);
    border: 1px solid var(--qe-border);
}

.text-qe-primary {
    color: var(--qe-primary) !important;
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--qe-border);
    background: var(--qe-card);
    padding: 0.875rem 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-version {
    font-size: 0.7rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--qe-primary);
    background: var(--qe-primary-light);
    padding: 0.125rem 0.45rem;
    border-radius: 4px;
}

.footer-link {
    font-size: 0.75rem;
    color: var(--qe-text-light);
    text-decoration: none;
    transition: var(--qe-transition);
}

.footer-link:hover {
    color: var(--qe-primary);
}

.footer-dot {
    color: var(--qe-border);
    font-size: 0.85rem;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--qe-text-light);
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0.75rem 1rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 0.35rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════
   CHANGELOG MODAL
   ═══════════════════════════════════════════ */

.changelog-entry {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--qe-border);
}

.changelog-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.changelog-version {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--qe-dark-blue);
    margin-bottom: 0.4rem;
}

.changelog-date {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--qe-text-light);
    margin-left: 0.25rem;
}

.changelog-entry ul {
    margin: 0;
    padding-left: 1.25rem;
}

.changelog-entry li {
    font-size: 0.82rem;
    color: var(--qe-text);
    line-height: 1.7;
}
