/* css/style.css - SENTINEL IKS Style (Updated for Left Sidebar Layout) */

/* Anchor highlight glow - when landing from interlinks (checks/controls). First column only, black overlay fades out. */
@keyframes rowGlowFade {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
tr.highlight-glow td:first-child {
    position: relative;
}
tr.highlight-glow td:first-child::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    animation: rowGlowFade 1.5s ease-out forwards;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
}

body {
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    font-size: 12px;
    line-height: 1.3;
    background-color: #fff; /* White content bg */
    color: #333;
    display: flex;
}

/* Sidebar (Left Nav) - top padding aligns with logo+content (20+60+50=130px); uses CI color 1 on company pages */
.sidebar {
    background-color: var(--ci-color-1, #273B55);
    color: white;
    width: 150px;
    min-height: 100vh;
    padding: 20px;
    padding-top: 130px; /* 20px + logo max 60px + 50px gap - aligns nav with content */
    position: fixed;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.sidebar nav {
    flex: 1;
}
.sidebar-logo {
    text-align: center;
    padding-bottom: 40px;
    margin-top: auto;
}
.sidebar-logo img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}
.sidebar-logo img:hover {
    opacity: 1;
}

/* Session Info Modal */
.session-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
}
.session-modal {
    background: white;
    width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.session-modal-header {
    background: var(--ci-color-1, #273B55);
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}
.session-modal-content {
    padding: 15px;
    max-width: 320px;
    margin: 0 auto;
}
.session-modal-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid #E3E7EA;
}
.session-modal-row:last-child {
    border-bottom: none;
}
.session-modal-label {
    color: #666;
}
.session-modal-value {
    font-weight: bold;
    color: #333;
}
.session-modal-divider {
    height: 1px;
    background: #E3E7EA;
}
.session-modal-footer {
    padding: 15px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}
.session-modal-about {
    font-weight: bold;
    font-size: 14px;
    color: var(--ci-color-1, #273B55);
    margin-bottom: 5px;
}
.session-modal-version {
    font-size: 11px;
    color: #666;
    margin-bottom: 3px;
}
.session-modal-copyright {
    font-size: 10px;
    color: #999;
}
.session-modal-close {
    width: 100%;
    height: 36px;
    background: #E3E7EA;
    border: none;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, sans-serif;
    cursor: pointer;
    border-radius: 0;
}
.session-modal-close:hover {
    background: #C1CAD3;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    margin-bottom: 10px;
}

.sidebar h1 {
    font-size: 12px;
    margin-bottom: 5px;
}

.sidebar p {
    font-size: 12px;
    opacity: 0.8;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav {
    margin-right: -20px; /* Extend delimiter lines to sidebar right edge (single extension for nav) */
}

.sidebar nav li {
    border-bottom: 1px solid var(--ci-color-1, #3a5270);
}

.sidebar nav li:first-of-type {
    border-top: 1px solid var(--ci-color-1, #3a5270);
}

.sidebar nav a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    padding: 10px;
    margin-right: -20px; /* Extend to sidebar right edge */
    padding-right: 30px;
    transition: background 0.3s, color 0.3s;
}

.sidebar nav a:hover {
    background-color: white;
    color: var(--ci-color-1, #273B55);
}

.sidebar nav > ul > li.active > a {
    background-color: white;
    color: var(--ci-color-1, #273B55);
}

/* Sub-categories under REPORTS etc. */
.sidebar nav .nav-parent { border-bottom: none; }
.sidebar nav .nav-main-item {
    color: white;
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    padding: 10px;
    padding-right: 30px;
}
.sidebar nav .nav-parent .nav-main-item a {
    color: white;
    text-decoration: none;
    display: block;
    margin: -10px;
    margin-right: -30px;
    padding: 10px;
    padding-right: 30px;
    transition: background 0.3s, color 0.3s;
}
.sidebar nav .nav-parent .nav-main-item a:hover {
    background-color: white;
    color: var(--ci-color-1, #273B55) !important;
}
.sidebar nav .nav-parent.main-active > .nav-main-item a {
    background-color: white;
    color: var(--ci-color-1, #273B55) !important;
}
.sidebar nav .nav-sub {
    list-style: none;
    border-top: none;
    margin: 0;
    padding: 0;
}
.sidebar nav .nav-sub li {
    border-bottom: none;
    border-top: 1px solid var(--ci-color-1, #3a5270);
}
.sidebar nav .nav-sub li:last-child {
    border-bottom: 1px solid var(--ci-color-1, #3a5270);
}
.sidebar nav .nav-sub a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
    text-transform: none;
    display: block;
    padding: 10px 10px 10px 30px; /* +20px left padding vs main */
    margin-right: -20px;
    padding-right: 30px;
    transition: background 0.3s, color 0.3s;
}
.sidebar nav .nav-sub a:hover {
    background-color: white;
    color: var(--ci-color-1, #273B55);
}
.sidebar nav .nav-sub li.active a {
    background-color: white;
    color: var(--ci-color-1, #273B55);
}

/* Page logo (risks, controls, checks, matrix, reports)
   Main provides 20px from top; wrap only has 50px gap below logo */
.page-logo-wrap {
    padding-bottom: 50px;
}
.page-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
}
/* Prevent extra gap below logo from following element's margin */
main > .page-logo-wrap + * {
    margin-top: 0 !important;
}

/* Logo placeholder for companies.asp, users.asp - same structure as logo pages:
   20px from top (main), 60px placeholder, 50px gap to content */
.logo-placeholder-wrap {
    padding-bottom: 50px;
}
.logo-placeholder {
    height: 60px;
}

/* Main Content - capped at 1722px; beyond that the company background image shows */
main {
    margin-left: 150px; /* Space for sidebar */
    padding: 20px;
    width: calc(100% - 150px);
    max-width: 1722px;
    background: #fff;
}

/* Background image panel - fills the space right of main when viewport > 1872px (150px sidebar + 1722px main) */
#bgPanel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 1872px; /* sidebar 150px + main max-width 1722px */
    z-index: 0;
    pointer-events: none;
    background-size: auto 100%;
    background-position: left top;
    background-repeat: no-repeat;
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px 5px;
    margin-bottom: 20px;
    background: white;
}

/* Preserve line breaks in description columns (after Date removal: risks col5=Beschrieb, controls col3=Beschrieb) */
#risks-table td:nth-child(5),
#controls-table td:nth-child(4),
#checks-table td:nth-child(3),
#checks-table td:nth-child(10) {
    white-space: pre-line;
}

/* Checks table filter row */
#checks-table tr.filter-row th,
#mass-table tr.filter-row th {
    background: white !important;
    padding: 0;
    vertical-align: middle;
}
#checks-table .filter-select,
#checks-table .filter-text,
#mass-table .filter-select,
#mass-table .filter-text {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 6px 8px;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    background-color: white;
    box-sizing: border-box;
}

/* Risks table - widths set via width attribute on th/td */

/* Controls table - widths set via width attribute on th/td */

th, td {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    background: white;
    font-size: 12px;
}

th {
    background-color: var(--ci-color-1, #273B55);
    color: white;
    font-weight: normal;
    height: 36px;
    padding: 0 10px;
    line-height: 36px;
    box-sizing: border-box;
}

/* Sortable column headers - text left, chevron right (dropdown-style) */
th.sortable {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    position: relative;
    padding-right: 24px;
}
th.sortable:hover {
    background-color: var(--ci-color-1, #3a5270);
}
/* Chevron arrow (two lines, like dropdown) - right-aligned */
th.sortable .sort-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    opacity: 0.9;
}
th.sortable .sort-arrow-asc,
th.sortable .sort-arrow-desc {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}
th.sortable .sort-arrow-asc {
    transform: translateY(-50%) rotate(-135deg);
}
th.sortable .sort-arrow-desc {
    transform: translateY(-50%) rotate(45deg);
}
th.sortable:not(.sort-active) .sort-arrow-asc,
th.sortable:not(.sort-active) .sort-arrow-desc {
    opacity: 0.6;
}

/* Filter row (above header) - risks.asp, controls.asp, login_tracking.asp */
#risks-table tr.filter-row th,
#controls-table tr.filter-row th,
#logins-table tr.filter-row th {
    background: white;
    padding: 0;
    vertical-align: middle;
}
#risks-table .filter-select,
#risks-table .filter-text,
#controls-table .filter-select,
#controls-table .filter-text,
#logins-table .filter-select {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 6px 8px;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    background-color: white;
    box-sizing: border-box;
}

tr:nth-child(even) td {
    background-color: #C1CAD3;
}

tr:nth-child(odd) td {
    background-color: #E3E7EA;
}

/* Data rows: 36px height, top-aligned content */
tbody tr:not(.add-row):not(.edit-row) td {
    padding: 6px 10px;
    line-height: 1.3;
    height: 36px;
    min-height: 36px;
    box-sizing: border-box;
    vertical-align: top;
}
/* Risks: cols 3,5 = flexible (Bezeichnung, Detaillierter Beschrieb) - multi-line (after Date removal) */
#risks-table tbody tr:not(.add-row):not(.edit-row) td:nth-child(3),
#risks-table tbody tr:not(.add-row):not(.edit-row) td:nth-child(5) {
    height: auto;
    min-height: 36px;
    line-height: 1.3;
    padding: 6px 10px;
    vertical-align: top;
}
/* Controls: cols 3,4 = flexible (Bezeichnung, Detaillierter Beschrieb) - multi-line (Risiko at col 2) */
#controls-table tbody tr:not(.add-row):not(.edit-row) td:nth-child(3),
#controls-table tbody tr:not(.add-row):not(.edit-row) td:nth-child(4) {
    height: auto;
    min-height: 36px;
    line-height: 1.3;
    padding: 6px 10px;
    vertical-align: top;
}
/* Disable row hover - no visual feedback on cursor position */
tr:hover td {
    /* Keep same as non-hover: odd/even alternating */
}
tr:nth-child(odd):hover td { background-color: #E3E7EA; }
tr:nth-child(even):hover td { background-color: #C1CAD3; }

/* Status colors (Key Risk, Risikograd, Eintreten) - override row backgrounds */
tr td.status-low, tr td.status-1-teil, tr td.status-tief { background-color: #d4edda !important; color: #155724; } /* green - Tief */
tr td.status-med, tr td.status-2-mittel { background-color: #fff3cd !important; color: #856404; } /* yellow - Mittel */
tr td.status-high, tr td.status-3-hoch { background-color: #f8d7da !important; color: #721c24; } /* red - Hoch */
tr td.status-offen { background-color: #ffe8cc !important; color: #c47c00; } /* orange */
tr td.status-erledigt { background-color: #d4edda !important; color: #155724; } /* green - Key Risk Yes */
tr td.status-zurueckgewiesen { background-color: #f8d7da !important; color: #721c24; } /* red - Key Risk No */

/* Inline add/edit rows - inputs fill column width */
.add-row td, .edit-row td {
    background: white !important;
    padding: 0;
    vertical-align: top;
}
/* ADD row: 36px height, no extra gap below - matches data rows (same as filter row) */
#risks-table tr.add-row td,
#controls-table tr.add-row td,
#companies-table tr.add-row td,
#companies-table tr.edit-row td,
#users-table tr.add-row td,
#users-table tr.edit-row td {
    height: 36px;
    min-height: 36px;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 36px;
}
.add-row select.add-row-input,
.edit-row select.add-row-input {
    margin: 0;
    vertical-align: middle;
}
.add-row .add-row-input, .edit-row .add-row-input {
    width: 100%;
    min-width: 0;
    padding: 6px 8px;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    box-sizing: border-box;
    vertical-align: top;
}
.add-row input.add-row-input, .add-row select.add-row-input,
.edit-row input.add-row-input, .edit-row select.add-row-input {
    height: 36px;
}
.add-row textarea.add-row-input, .edit-row textarea.add-row-input {
    min-height: 77px;
    height: 77px;
    resize: vertical;
}
/* Risks + Controls: Detaillierter Beschrieb textarea - 36px default, auto-grows with content */
#risks-table .add-row textarea.add-row-input,
#risks-table .edit-row textarea.add-row-input,
#controls-table .add-row textarea.add-row-input,
#controls-table .edit-row textarea.add-row-input,
#checks-table .edit-row textarea.add-row-input,
#mass-table .edit-row textarea.add-row-input {
    min-height: 36px;
    height: 36px;
}

/* Action column: empty header, no row background on button cells */
th.action-header {
    background: white;
}
tr td.action-icons {
    background: white !important;
    white-space: nowrap;
    padding: 0 !important;
}
/* Data rows: action cell same as edit row - no padding, buttons left */
/* Fixed-width code columns (Risk/Control codes) - prevent shrinking on narrow windows */
#risks-table td:first-child,
#risks-table th:first-child,
#controls-table td:nth-child(1),
#controls-table th:nth-child(1),
#controls-table td:nth-child(2),
#controls-table th:nth-child(2),
#checks-table td:nth-child(1),
#checks-table th:nth-child(1),
#checks-table td:nth-child(2),
#checks-table th:nth-child(2) {
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
}

#risks-table tbody tr:not(.add-row):not(.edit-row) td.action-icons,
#controls-table tbody tr:not(.add-row):not(.edit-row) td.action-icons,
#checks-table tbody tr:not(.add-row):not(.edit-row) td.action-icons,
#companies-table tbody tr:not(.add-row):not(.edit-row) td.action-icons,
#users-table tbody tr:not(.add-row):not(.edit-row) td.action-icons {
    padding: 0 !important;
}
/* Column before actions: no right padding so gap to buttons = 5px (border-spacing) */
#risks-table tbody tr td:nth-last-child(2),
#controls-table tbody tr td:nth-last-child(2) {
    padding-right: 0;
}

/* Action icons - 5px between buttons, 5px from column left */
.action-icons button {
    width: 36px;
    height: 36px;
    margin: 0 2.5px;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 0;
}
.action-icons button:first-child {
    margin-left: 0;
}
.action-icons button:last-child {
    margin-right: 0;
}
.action-icons .btn-delete {
    background: #e53935;
    color: white;
}
.action-icons .btn-delete:hover {
    background: #c62828;
}

.action-icons button:hover {
    background-color: #aaa;
}

/* Toolbar/Filters (from screenshots) */
.toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-purple {
    background-color: var(--ci-color-1, #273B55);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-purple:hover {
    background-color: var(--ci-color-1, #1e2d3d);
}

/* CI color 1 - used by company pages for bars/headers (sidebar sets --ci-color-1) */
.ci-bg { background-color: var(--ci-color-1, #273B55) !important; color: white !important; }
.ci-btn { background-color: var(--ci-color-1, #273B55); color: white; }
.ci-btn:hover { background-color: var(--ci-color-1, #1e2d3d); }

.btn-blue {
    background-color: #00bfff;
    color: white;
}

/* Risk Matrix (from Reports screenshot) */
.risk-matrix {
    display: block;
}

.risk-matrix div {
    padding: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.risk-matrix .header {
    background: var(--ci-color-1, #273B55);
    color: white;
}

.risk-matrix .green { background: #d4edda; }
.risk-matrix .green-strong { background: #ADD7B3; }
.risk-matrix .yellow { background: #fff3cd; }
.risk-matrix .orange { background: #ffe8cc; }
.risk-matrix .red { background: #f8d7da; }

/* Forms & Inputs */
input[type="text"], input[type="date"], input[type="email"], select, textarea {
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}


input:focus, select:focus, textarea:focus {
    border-color: var(--ci-color-1, #273B55);
    outline: none;
}

/* Responsive: Sidebar to top nav on small screens */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        min-height: auto;
        position: relative;
    }
    main {
        margin-left: 0;
        width: 100%;
    }
    .sidebar nav ul {
        display: flex;
        flex-wrap: wrap;
    }
    .sidebar nav li {
        flex: 1;
        border-top: none;
    }
    .sidebar nav a {
        margin-right: 0;
        padding-right: 10px;
    }
}

/* Reports Container */
.reports-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.reports-a4-container {
    max-width: 210mm;
    border: 1px solid #999;
    padding: 1cm 1cm 1cm 2cm; /* top right bottom left - left 2cm for binder holes */
}

.reports-table-section {
    flex: 1;
}

.risk-matrix-section {
    flex: 1;
    max-width: 400px;
}

.matrix-table {
    border-collapse: separate;
    border-spacing: 5px;
    table-layout: fixed;
    border: none;
}

.matrix-table th, .matrix-table td {
    border: none !important;
    border-radius: 0 !important;
    padding: 0;
    text-align: center;
    font-size: 12px;
    box-sizing: border-box;
}

.matrix-table th {
    background: #f2f2f2;
    color: #333;
}

/* 4x4 colored cells: 80x80px - clickable to filter risks table */
.matrix-table td.matrix-cell {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    text-align: left;
    vertical-align: top;
    font-size: 20px;
    font-weight: bold;
    padding: 6px 8px;
    cursor: pointer;
}
.matrix-table td.matrix-cell-selected {
    box-shadow: inset 0 0 0 3px var(--ci-color-1, #273B55);
}
/* No hover effect on matrix cells */
.risk-matrix .matrix-table tr:hover td.matrix-cell.green { background-color: #d4edda !important; }
.risk-matrix .matrix-table tr:hover td.matrix-cell.green-strong { background-color: #ADD7B3 !important; }
.risk-matrix .matrix-table tr:hover td.matrix-cell.yellow { background-color: #fff3cd !important; }
.risk-matrix .matrix-table tr:hover td.matrix-cell.orange { background-color: #ffe8cc !important; }
.risk-matrix .matrix-table tr:hover td.matrix-cell.red { background-color: #f8d7da !important; }

/* Matrix axis labels - merged violet bars. Corner cell: empty, no fill. */
.matrix-corner-empty {
    background: #fff !important;
    border: none !important;
    padding: 0 !important;
    width: 36px;
    min-width: 36px;
}

.matrix-axis-vertical {
    background: var(--ci-color-1, #273B55) !important;
    color: white !important;
    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    position: relative;
    font-weight: normal;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}
.matrix-axis-vertical-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.matrix-axis-vertical-text {
    display: inline-block;
    transform: rotate(-90deg);
    white-space: nowrap;
    font-weight: normal;
    text-decoration: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.matrix-axis-horizontal {
    background: var(--ci-color-1, #273B55) !important;
    color: white !important;
    height: 36px !important;
    min-height: 36px !important;
    line-height: 36px;
    padding: 0 8px !important;
    text-align: left !important;
    font-weight: normal;
}

.green { background: #d4edda; }
.yellow { background: #fff3cd; }
.red { background: #f8d7da; }

td.two-line {
    line-height: 1.2;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    cursor: pointer;
    color: #aaa;
}.close:hover {
    color: #333;
}

.required {
    color: #d32f2f;
    margin-left: 4px;
}

.form-actions {
    margin-top: 25px;
    text-align: right;
}

.btn-gray {
    background: #ccc;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
}

label {
    display: block;
    margin: 12px 0 5px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* GDPR Art. 15 Export Footer */
.export-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}
.export-footer-logo {
    width: 40px;
    height: 40px;
    opacity: 0.3;
}
.export-footer-buttons {
    display: flex;
    gap: 10px;
}
.btn-export {
    height: 36px;
    padding: 0 20px;
    background: #000000;
    color: white;
    border: none;
    font-size: 12px;
    font-family: "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;
    cursor: pointer;
}
.btn-export:hover {
    background: #333333;
}