:root {
    /* Core Theme - Default values */
    --bg-color: #022c22;
    --card-bg: #064e3b;
    --accent-color: #10b981;
    --accent-hover: #059669;
    --text-primary: #ecfdf5;
    --text-secondary: #a7f3d0;
    --border-color: rgba(16, 185, 129, 0.2);
    --danger-color: #ef4444;
    --warning-color: #f97316;
    --success-color: #10b981;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-speed: 0.3s;
}

.hidden {
    display: none !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Screens */
.login-screen,
.hub-screen,
.setup-screen,
.list-screen,
.app-container {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    width: 100%;
}

/* Use .active helper for transitions */

/* Header */
header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

h1 {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.025em;
}

/* Buttons */
.primary-btn,
.secondary-btn,
.icon-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.primary-btn {
    background-color: var(--accent-color);
    color: #064e3b;
}

.primary-btn:hover {
    background-color: var(--accent-hover);
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.secondary-btn {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--border-color);
}

.secondary-btn:hover {
    background-color: rgba(16, 185, 129, 0.2);
}

/* Login Modernized */
#loginScreen {
    justify-content: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
}

.login-link {
    color: var(--accent-color);
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 10px;
    cursor: pointer;
}

.login-link:hover {
    text-decoration: underline;
}


.welcome-screen {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
}

.welcome-split-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-right: 1px solid var(--border-color);
}

.welcome-split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

/* --- HUB TILES (Restored Original) --- */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
}

.hub-tile {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.module-card:hover,
.hub-tile:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.hub-icon {
    font-size: 3rem;
}

.hub-label {
    font-weight: 600;
    font-size: 1.1rem;
}

/* App Container Layout */
.app-container main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
}

.camera-section,
.gallery-section {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

/* Capture Btn */
.main-capture-btn {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 40px auto;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
}

.main-capture-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Fehlerklassen */
.fk-border-1 {
    border-left: 6px solid var(--danger-color) !important;
}

.fk-border-2 {
    border-left: 6px solid var(--warning-color) !important;
}

.fk-border-3 {
    border-left: 6px solid #fbbf24 !important;
}

.fk-border-4 {
    border-left: 6px solid var(--accent-color) !important;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

/* Premium Settings Modal Styles */
.settings-modal {
    background: rgba(6, 78, 59, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    max-width: 800px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.settings-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 12px;
    border-bottom: none !important;
}

.settings-tabs .tab-btn {
    flex: 1;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
    border-bottom: none !important;
    font-size: 0.9rem;
}

.settings-tabs .tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.settings-tabs .tab-btn.active {
    background: var(--accent-color);
    color: #064e3b;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.settings-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.profile-avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.profile-info h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.profile-info p {
    margin: 5px 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.role-admin { background: rgba(239, 68, 68, 0.2); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }
.role-user { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.3); }
.role-viewer { background: rgba(59, 130, 246, 0.2); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.3); }

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table th {
    text-align: left;
    padding: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.user-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.category-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.category-list li button {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.category-list li button:hover {
    background: #ef4444;
    color: white;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Gallery & Doc Items */
.gallery-section {
    max-height: 80vh;
    overflow-y: auto;
}

.doc-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.doc-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    background: #000;
}

/* Weichen Diagram */
.weichen-diagram-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.weichen-diagram {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
}

/* Weichenmessung specific */
.weichen-master-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.weichen-form-scroll {
    overflow-x: auto;
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.weichen-measure-grid {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 1200px;
}

.weichen-measure-grid th {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.weichen-measure-grid td {
    padding: 2px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.weichen-input {
    width: 100%;
    background: transparent;
    border: 1px solid transparent;
    color: white;
    padding: 10px 5px;
    text-align: center;
    transition: all 0.2s;
    font-family: monospace;
}

.weichen-input:focus {
    background: rgba(16, 185, 129, 0.1);
    outline: none;
    border-color: var(--accent-color);
}

.tol-error {
    color: #fff;
    font-weight: bold;
    background: rgba(239, 68, 68, 0.4) !important;
}

.last-val-row {
    background: rgba(16, 185, 129, 0.05) !important;
    opacity: 0.8;
    font-style: italic;
}

.delta-display {
    display: block;
    font-size: 0.75rem;
    margin-top: 2px;
    font-weight: bold;
}

.delta-pos {
    color: #ef4444;
    /* Rojo if getting worse/away from soll, but usually colored by logic */
}

.delta-neutral {
    color: var(--text-secondary);
}

.delta-up {
    color: #ef4444;
}

.delta-down {
    color: #3b82f6;
}

.delta-same {
    color: #a7f3d0;
}

/* Client Module Rights UI */
.client-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.module-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.module-checkbox-item input {
    cursor: pointer;
}

.hub-tile.module-hidden {
    display: none !important;
}

/* Ensure Settings & Admin are visible when not module-hidden */
#moduleSettingsHubBtn, #moduleAdminBtn {
    display: flex;
}

.client-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-branding-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logo-preview {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.client-logo-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.branding-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.branding-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.branding-row label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    min-width: 80px;
}

.history-modal {
    max-width: 800px;
}

.history-list-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}

.weichen-header-input {
    width: 100%;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px;
}

.weichen-header-input:hover {
    border-color: var(--accent-color);
}

.setup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.window-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
    padding: 5px 0;
}

.window-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.1s;
    width: 45px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    z-index: 10;
}

.window-close-btn:hover {
    background: #e81123 !important;
    color: white !important;
    transform: none !important;
}

/* Checklist Styles */
.checklist-section {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.checklist-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.checklist-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--accent-color);
}

.checklist-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fk-selector {
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
}

.fk-1 {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: #ef4444 !important;
    color: #fca5a5 !important;
}

.fk-2 {
    background: rgba(249, 115, 22, 0.2) !important;
    border-color: #f97316 !important;
    color: #fdba74 !important;
}

.fk-3 {
    background: rgba(234, 179, 8, 0.2) !important;
    border-color: #eab308 !important;
    color: #fde047 !important;
}

.fk-4 {
    background: rgba(16, 185, 129, 0.2) !important;
    border-color: #10b981 !important;
    color: #6ee7b7 !important;
}

.checklist-camera-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.checklist-camera-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--accent-color);
}

.checklist-camera-btn.has-photo {
    background: var(--accent-color);
    color: #064e3b;
}

.checklist-photo-preview {
    width: 60px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: zoom-in;
}

.fk-dash-display {
    display: inline-block;
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: var(--text-secondary);
    min-height: 40px;
}

/* Safety & Signature */
.safety-section {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.safety-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.signature-container {
    margin-top: 25px;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
}

#signatureCanvas {
    width: 100%;
    height: 100%;
    cursor: crosshair;
    display: block;
}

.signature-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

/* Settings Tabs */
.settings-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
}

.tab-btn.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.tab-content.active {
    display: flex;
}

/* Doc Input */
.doc-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    color: white;
    font-family: inherit;
}

.doc-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-only {
    display: none;
}

/* Utility */
.active {
    display: flex !important;
    animation: fadeIn 0.3s ease;
}

/* --- GLEIS-OVERVIEW STYLES --- */
.gleis-overview-section {
    grid-column: span 2;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.gleis-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gleis-table-wrapper {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.1);
}

.gleis-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.gleis-table th {
    position: sticky;
    top: 0;
    background: var(--card-bg);
    color: var(--accent-color);
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    z-index: 5;
}

.gleis-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gleis-table tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.gl.efr-data-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s;
}

.efr-data-table tr.efr-row-selected {
    background: rgba(16, 185, 129, 0.2) !important;
}

.efr-data-table tr:hover:not(.efr-row-selected) {
    background: rgba(255, 255, 255, 0.08);
}

.fk-badge-container {
    display: flex;
    gap: 8px;
}

.fk-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    min-width: 45px;
    text-align: center;
}

.fk-badge.fk-1 { color: #fca5a5; background: rgba(239, 68, 68, 0.2); border: 1px solid #ef4444; }
.fk-badge.fk-2 { color: #fdba74; background: rgba(249, 115, 22, 0.2); border: 1px solid #f97316; }
.fk-badge.fk-3 { color: #fde047; background: rgba(234, 179, 8, 0.2); border: 1px solid #eab308; }
.fk-badge.fk-4 { color: #6ee7b7; background: rgba(16, 185, 129, 0.2); border: 1px solid #10b981; }

.fk-badge.count-zero {
    opacity: 0.3;
    border-color: transparent !important;
    background: transparent !important;
    color: var(--text-secondary);
}

/* Section Info Banner in Capture Tab */
.section-info-banner {
    display: none;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

.section-info-banner.active {
    display: flex;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.capture-action-btn {
    background: var(--accent-color);
    color: #064e3b;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.capture-action-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* --- WEICHENMESSUNG STYLES --- */
.weichen-diagram-container {
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.weichen-diagram {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.weichen-master-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.weichen-form-scroll {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.weichen-measure-grid {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    font-size: 0.85rem;
}

.weichen-measure-grid th, 
.weichen-measure-grid td {
    border: 1px solid var(--border-color);
    padding: 8px;
    text-align: center;
    min-width: 60px;
}

.weichen-measure-grid th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--accent-color);
    font-weight: 600;
}

.weichen-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s;
}

.weichen-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    outline: none;
}

.weichen-header-input {
    background: transparent;
    border: none;
    color: var(--accent-color);
    text-align: center;
    font-weight: bold;
    width: 40px;
    cursor: default;
}

.delta-display {
    display: block;
    font-size: 0.7rem;
    margin-top: 2px;
    font-weight: bold;
}

.delta-up { color: #fca5a5; }
.delta-down { color: #fca5a5; }
.delta-same { color: var(--text-secondary); opacity: 0.6; }

.tol-error {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: var(--danger-color) !important;
    color: #fca5a5 !important;
}

.last-val-row {
    background: rgba(16, 185, 129, 0.03);
    color: var(--text-secondary);
}

.last-val-row .weichen-input {
    opacity: 0.6;
}

.checklist-section {
    margin-top: 40px;
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.safety-section {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(16, 185, 129, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.safety-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.signature-container {
    grid-column: span 2;
    background: white;
    border-radius: 8px;
    height: 150px;
    margin-top: 15px;
    position: relative;
}

#signatureCanvas {
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.io-text { color: var(--accent-color); font-weight: bold; }
.nio-text { color: var(--danger-color); font-weight: bold; }

.fk-selector {
    width: 100%;
}

.fk-selector.fk-1 { background: var(--danger-color); color: white; }
.fk-selector.fk-2 { background: var(--warning-color); color: white; }
.fk-selector.fk-3 { background: #eab308; color: black; }
.fk-selector.fk-4 { background: var(--accent-color); color: #064e3b; }

.fk-dash-display {
    text-align: center;
    color: var(--text-secondary);
    opacity: 0.5;
}

.checklist-photo-preview {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--accent-color);
}

.checklist-camera-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.checklist-camera-btn.has-photo {
    background: var(--accent-color);
    color: #064e3b;
}

.history-modal {
    max-width: 600px;
}

.history-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

/* --- BÃœ-MODULE v2.0.0 STYLES --- */
.bu-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.bu-tab-panel.active {
    display: block;
}

.bu-section-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.bu-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bu-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.bu-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.bu-quadrant-wrapper {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.bu-quadrant-wrapper h3 {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.bu-quad-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Zugmeldebuch Table Styles */
#zugmeldeTableContainer {
    max-height: 70vh;
    overflow-y: auto;
}

.bu-table th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #064e3b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bu-table tr:hover {
    background: rgba(16, 185, 129, 0.08) !important;
}

.bu-table input.doc-input:focus {
    background: rgba(255,255,255,0.05);
    outline: none;
    border-color: var(--accent-color);
}

.small-btn {
    transition: transform 0.1s ease, filter 0.1s ease;
}

.small-btn:active {
    transform: scale(0.95);
}

/* Betra Module Specifics */
#betraDetailView .settings-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 0;
}

#betraDetailView .input-group label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

#betraDetailView h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-size: 1rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding-bottom: 8px;
}

#betraMeasuresContainer {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

#betraMeasuresContainer::-webkit-scrollbar {
    width: 6px;
}

#betraMeasuresContainer::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

/* --- CLIENT MANAGEMENT ENHANCEMENTS --- */
.client-detail-view {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.client-list-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.client-list-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--accent-color);
}

.branding-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.branding-color-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.branding-color-item label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.branding-color-item input[type="color"] {
    width: 100%;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.client-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.back-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.client-users-section {
    margin-top: 30px;
}

.add-user-inline {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.role-expanded-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.module-hidden {
    display: none !important;
}

/* --- EFR-Auswertung SPECIFIC --- */
.efr-upload-container {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 15px; /* Reduced from 40px */
    text-align: center;
    margin-bottom: 15px; /* Reduced from 30px */
    transition: all 0.3s ease;
    cursor: pointer;
}

.efr-upload-container:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: var(--accent-color);
}

.efr-upload-icon {
    font-size: 1.5rem; /* Reduced from 3rem */
    margin-bottom: 5px;
    display: inline-block;
}

.efr-table-container {
    width: 100%;
    overflow: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    height: calc(100vh - 180px); /* Increased from 220px */
    min-height: 500px;
}

.efr-data-table {
    width: 100%;
    min-width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    white-space: nowrap;
    table-layout: auto;
}

.efr-data-table th {
    background: #022c22; /* Solid background for sticky */
    color: var(--accent-color);
    padding: 15px 5px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 2px solid var(--accent-color);
    height: 140px;
    vertical-align: bottom;
}

.efr-rotated-header {
    writing-mode: vertical-rl;
    transform: rotate(180deg); /* Pure vertical for better space extraction */
    white-space: nowrap;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 0.75rem;
    max-height: 120px;
}

.efr-data-table td {
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.efr-data-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.efr-flag-pill {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.efr-flag-active {
    background: var(--accent-color);
    color: #064e3b;
}

.efr-flag-inactive {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
}

.efr-time-calculated {
    color: #60a5fa !important; /* Subtle blue */
    font-style: italic;
}

.efr-time-calculated::after {
    content: '*';
    font-size: 0.7rem;
    vertical-align: super;
    margin-left: 2px;
}

.efr-status-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
}

.efr-progress-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.efr-progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* Premium Logout Button */
.hub-logout-btn {
    background: rgba(239, 68, 68, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.hub-logout-btn::before {
    content: 'ðŸšª';
    font-size: 1.1rem;
}

.hub-logout-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #f87171;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.4);
}

.hub-logout-btn:active {
    transform: translateY(0);
}

/* Positioning for the main hub logout */
#mainMenuScreen #logoutBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

/* --- Gleis & Messmittel Table Styles --- */
.gleis-table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 15px;
}

.gleis-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.gleis-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--accent-color);
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

.gleis-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    vertical-align: middle;
}

.gleis-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.small-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-width: auto;
    height: auto;
}
: r o o t   {  
         - - b g - c o l o r :   # 0 2 2 c 2 2 ;  
         - - c a r d - b g :   # 0 6 4 e 3 b ;  
         - - a c c e n t - c o l o r :   # 1 0 b 9 8 1 ;  
         - - a c c e n t - h o v e r :   # 0 5 9 6 6 9 ;  
         - - t e x t - p r i m a r y :   # e c f d f 5 ;  
         - - t e x t - s e c o n d a r y :   # a 7 f 3 d 0 ;  
         - - b o r d e r - c o l o r :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 2 ) ;  
         - - d a n g e r - c o l o r :   # e f 4 4 4 4 ;  
         - - w a r n i n g - c o l o r :   # f 9 7 3 1 6 ;  
         - - s u c c e s s - c o l o r :   # 1 0 b 9 8 1 ;  
         - - f o n t - f a m i l y :   ' I n t e r ' ,   s y s t e m - u i ,   - a p p l e - s y s t e m ,   s a n s - s e r i f ;  
         - - t r a n s i t i o n - s p e e d :   0 . 3 s ;  
 }  
  
 *   {  
         b o x - s i z i n g :   b o r d e r - b o x ;  
         m a r g i n :   0 ;  
         p a d d i n g :   0 ;  
 }  
  
 b o d y   {  
         f o n t - f a m i l y :   v a r ( - - f o n t - f a m i l y ) ;  
         b a c k g r o u n d - c o l o r :   v a r ( - - b g - c o l o r ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         l i n e - h e i g h t :   1 . 5 ;  
         m i n - h e i g h t :   1 0 0 v h ;  
         p a d d i n g :   2 0 p x ;  
 }  
  
 . s e t u p - c o n t a i n e r   {  
         m a x - w i d t h :   1 4 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
         b a c k g r o u n d :   v a r ( - - c a r d - b g ) ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         p a d d i n g :   3 0 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ;  
 }  
  
 . w i n d o w - h e a d e r   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         p a d d i n g - b o t t o m :   2 0 p x ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 / *   T a b s   * /  
 . s e t t i n g s - t a b s   {  
         d i s p l a y :   f l e x ;  
         g a p :   5 p x ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
         p a d d i n g :   5 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
 }  
  
 . t a b - b t n   {  
         f l e x :   1 ;  
         b a c k g r o u n d :   n o n e ;  
         b o r d e r :   n o n e ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         p a d d i n g :   1 2 p x ;  
         c u r s o r :   p o i n t e r ;  
         f o n t - w e i g h t :   6 0 0 ;  
         b o r d e r - r a d i u s :   8 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . t a b - b t n : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
 }  
  
 . t a b - b t n . a c t i v e   {  
         b a c k g r o u n d :   v a r ( - - a c c e n t - c o l o r ) ;  
         c o l o r :   # 0 6 4 e 3 b ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 3 ) ;  
 }  
  
 / *   B u t t o n s   * /  
 . p r i m a r y - b t n ,   . s e c o n d a r y - b t n   {  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   8 p x ;  
         p a d d i n g :   1 0 p x   2 0 p x ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   8 p x ;  
 }  
  
 . p r i m a r y - b t n   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         c o l o r :   # 0 6 4 e 3 b ;  
 }  
  
 . p r i m a r y - b t n : h o v e r   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - a c c e n t - h o v e r ) ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ;  
 }  
  
 . s e c o n d a r y - b t n   {  
         b a c k g r o u n d - c o l o r :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 1 ) ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
 }  
  
 / *   I n p u t s   * /  
 . d o c - i n p u t   {  
         w i d t h :   1 0 0 % ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   8 p x ;  
         p a d d i n g :   1 0 p x ;  
         c o l o r :   w h i t e ;  
 }  
  
 . i n p u t - g r o u p   {  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   6 p x ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
 }  
  
 . i n p u t - g r o u p   l a b e l   {  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
 }  
  
 / *   W e i c h e n - s t y l e   T a b l e   L a y o u t s   * /  
 . w e i c h e n - f o r m - s c r o l l   {  
         o v e r f l o w - x :   a u t o ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . w e i c h e n - m e a s u r e - g r i d   {  
         w i d t h :   1 0 0 % ;  
         b o r d e r - c o l l a p s e :   c o l l a p s e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         m i n - w i d t h :   1 0 0 0 p x ;  
 }  
  
 . w e i c h e n - m e a s u r e - g r i d   t h ,   . w e i c h e n - m e a s u r e - g r i d   t d   {  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         p a d d i n g :   1 2 p x   1 5 p x ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . w e i c h e n - m e a s u r e - g r i d   t h   {  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         f o n t - w e i g h t :   7 0 0 ;  
 }  
  
 . w e i c h e n - m e a s u r e - g r i d   t d   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 2 ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . w e i c h e n - m e a s u r e - g r i d   t r : h o v e r   t d   {  
         b a c k g r o u n d :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 0 8 ) ;  
 }  
  
 / *   B Ã S- M O D U L E   S A N D B O X   C S S   ( v 2 . 0 . 3 )   * /  
  
 . b u - t a b - p a n e l   {  
         d i s p l a y :   n o n e ;  
         a n i m a t i o n :   f a d e I n   0 . 3 s   e a s e ;  
 }  
  
 . b u - t a b - p a n e l . a c t i v e   {  
         d i s p l a y :   b l o c k ;  
 }  
  
 . b u - s e c t i o n - t i t l e   {  
         f o n t - s i z e :   1 . 2 r e m ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         p a d d i n g - b o t t o m :   1 0 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
 }  
  
 / *   C h e c k l i s t   T a b l e   * /  
 . c h e c k l i s t - t a b l e   {  
         w i d t h :   1 0 0 % ;  
         m a r g i n - t o p :   1 5 p x ;  
         f o n t - s i z e :   0 . 9 5 r e m ;  
 }  
  
 . c h e c k l i s t - t a b l e   t h   {  
         b a c k g r o u n d :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 1 5 )   ! i m p o r t a n t ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         p a d d i n g :   1 2 p x ;  
 }  
  
 . c h e c k l i s t - t a b l e   t d   {  
         p a d d i n g :   1 0 p x   1 2 p x ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 1 ) ;  
 }  
  
 . c h e c k l i s t - t a b l e   t r : h o v e r   t d   {  
         b a c k g r o u n d :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 0 3 ) ;  
 }  
  
 . c h e c k l i s t - t a b l e   i n p u t [ t y p e = " r a d i o " ]   {  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
         c u r s o r :   p o i n t e r ;  
 }  
  
 . i o - t e x t   {   c o l o r :   v a r ( - - s u c c e s s - c o l o r ) ;   f o n t - w e i g h t :   b o l d ;   }  
 . n i o - t e x t   {   c o l o r :   v a r ( - - d a n g e r - c o l o r ) ;   f o n t - w e i g h t :   b o l d ;   }  
  
 / *   G r i d   &   C a r d s   * /  
 . b u - g r i d - 2 c o l   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         g a p :   2 0 p x ;  
 }  
  
 . b u - c a r d   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         p a d d i n g :   2 5 p x ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 / *   A n i m a t i o n s   * /  
 @ k e y f r a m e s   f a d e I n   {  
         f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( 5 p x ) ;   }  
         t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   }  
 }  
  
 / *   S a n d b o x   S p e c i f i c s   * /  
 . d o c - i n p u t   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   1 0 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 5 ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         c o l o r :   w h i t e ;  
         b o r d e r - r a d i u s :   8 p x ;  
 }  
  
 . d o c - i n p u t : f o c u s   {  
         b o r d e r - c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 8 ) ;  
         o u t l i n e :   n o n e ;  
 }  
  
 . d o c - i n p u t . m a n d a t o r y - f i e l d   {  
         b o r d e r - c o l o r :   v a r ( - - d a n g e r - c o l o r ) ;  
         b o x - s h a d o w :   0   0   5 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 4 ) ;  
         b a c k g r o u n d :   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 0 5 ) ;  
 }  
  
 . d o c - i n p u t . r e a d o n l y   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 2 )   ! i m p o r t a n t ;  
         c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 5 ) ;  
         b o r d e r - c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;  
         c u r s o r :   d e f a u l t ;  
 }  
  
 / *   V i s i b i l i t y   M a r k e r s   * /  
 . s i c h t - m a r k e r   {  
         w i d t h :   3 5 p x ;  
         h e i g h t :   3 5 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 6 ) ;  
         b o r d e r :   2 p x   s o l i d   w h i t e ;  
         c o l o r :   w h i t e ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         u s e r - s e l e c t :   n o n e ;  
         b o x - s h a d o w :   0   0   1 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;  
 }  
  
 . s i c h t - m a r k e r : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
         z - i n d e x :   1 0 ;  
 }  
  
 . s i c h t - m a r k e r . i o   {   b a c k g r o u n d :   v a r ( - - s u c c e s s - c o l o r ) ;   b o r d e r - c o l o r :   # 0 6 4 e 3 b ;   c o l o r :   # 0 6 4 e 3 b ;   }  
 . s i c h t - m a r k e r . n i o   {   b a c k g r o u n d :   v a r ( - - d a n g e r - c o l o r ) ;   b o r d e r - c o l o r :   # 7 f 1 d 1 d ;   c o l o r :   w h i t e ;   a n i m a t i o n :   p u l s e R e d   2 s   i n f i n i t e ;   }  
  
 @ k e y f r a m e s   p u l s e R e d   {  
         0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 7 ) ;   }  
         7 0 %   {   b o x - s h a d o w :   0   0   0   1 0 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 ) ;   }  
         1 0 0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 ) ;   }  
 }  
  
 . s i c h t - m a r k e r - m i n i   {   w i d t h :   1 2 p x ;   h e i g h t :   1 2 p x ;   b o r d e r - r a d i u s :   5 0 % ;   }  
 . s i c h t - m a r k e r - m i n i . i o   {   b a c k g r o u n d :   v a r ( - - s u c c e s s - c o l o r ) ;   }  
 . s i c h t - m a r k e r - m i n i . n i o   {   b a c k g r o u n d :   v a r ( - - d a n g e r - c o l o r ) ;   }  
  
 / *   Q u a d r a n t   2 . 0   -   F l o a t i n g   C a r d s   a n d   D u a l   P h o t o s   * /  
 . q u a d - d i a g r a m - w r a p p e r   {  
         p o s i t i o n :   r e l a t i v e ;  
         w i d t h :   1 0 0 % ;  
         m a x - w i d t h :   1 1 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         o v e r f l o w :   h i d d e n ;  
         b a c k g r o u n d :   # 0 0 0 ;  
 }  
  
 . c a l c - t a b l e - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   5 0 p x   6 0 p x   4 5 p x   6 5 p x   6 5 p x   6 0 p x   1 f r ;  
         g a p :   8 p x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         m a r g i n - t o p :   1 0 p x ;  
 }  
  
 . c a l c - t a b l e - g r i d   . t h   {  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         f o n t - s i z e :   0 . 7 r e m ;  
         p a d d i n g - b o t t o m :   5 p x ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
 }  
  
 . c a l c - t a b l e - g r i d   . t d ,   . c a l c - t a b l e - g r i d   . t d - l a b e l   {  
         p a d d i n g :   4 p x   0 ;  
 }  
  
 . c a l c - t a b l e - g r i d   . t d - l a b e l   {  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   # f f f ;  
         o p a c i t y :   0 . 9 ;  
 }  
  
 . c a l c - c a r d - t a b u l a r   {  
         p a d d i n g :   1 5 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 3 ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
 }  
  
 . c a l c - c a r d - t a b u l a r . w a r n i n g - b o r d e r   {  
         b o r d e r - c o l o r :   v a r ( - - d a n g e r - c o l o r ) ;  
         b a c k g r o u n d :   r g b a ( 1 2 7 ,   2 9 ,   2 9 ,   0 . 0 5 ) ;  
 }  
  
 . b a d g e . d a n g e r   {  
         b a c k g r o u n d :   v a r ( - - d a n g e r - c o l o r ) ;  
         c o l o r :   # f f f ;  
         p a d d i n g :   2 p x   8 p x ;  
         b o r d e r - r a d i u s :   4 p x ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
 }  
  
 . q u a d - d i a g r a m - i m g   {  
         w i d t h :   1 0 0 % ;  
         d i s p l a y :   b l o c k ;  
         o p a c i t y :   1 . 0 ;  
 }  
  
 . q u a d - c a r d - f l o a t i n g   {  
         p o s i t i o n :   a b s o l u t e ;  
         w i d t h :   2 7 0 p x ;  
         b a c k g r o u n d :   r g b a ( 6 ,   7 8 ,   5 9 ,   0 . 7 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 2 p x )   s a t u r a t e ( 1 8 0 % ) ;  
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 1 2 p x )   s a t u r a t e ( 1 8 0 % ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         p a d d i n g :   1 5 p x ;  
         b o x - s h a d o w :   0   8 p x   3 2 p x   0   r g b a ( 0 ,   0 ,   0 ,   0 . 6 ) ;  
         z - i n d e x :   5 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ;  
 }  
  
 . q u a d - c a r d - f l o a t i n g : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x )   s c a l e ( 1 . 0 2 ) ;  
         b o r d e r - c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         b a c k g r o u n d :   r g b a ( 6 ,   7 8 ,   5 9 ,   0 . 8 5 ) ;  
         z - i n d e x :   5 0 ;  
 }  
  
 . q u a d - c a r d - f l o a t i n g . n i o - s t a t u s   {  
         b o r d e r - c o l o r :   v a r ( - - d a n g e r - c o l o r ) ;  
         b o x - s h a d o w :   0   0   2 0 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 3 ) ;  
         b a c k g r o u n d :   r g b a ( 1 2 7 ,   2 9 ,   2 9 ,   0 . 4 ) ;  
 }  
  
 . q u a d - c a r d - t i t l e   {  
         f o n t - w e i g h t :   8 0 0 ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         m a r g i n - b o t t o m :   8 p x ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
 }  
  
 . q u a d - p h o t o - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         g a p :   8 p x ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
 }  
  
 . q u a d - p h o t o - s l o t   {  
         p o s i t i o n :   r e l a t i v e ;  
         h e i g h t :   8 0 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 5 ) ;  
         b o r d e r :   1 p x   d a s h e d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 2 ) ;  
         b o r d e r - r a d i u s :   6 p x ;  
         o v e r f l o w :   h i d d e n ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         c u r s o r :   p o i n t e r ;  
 }  
  
 . q u a d - p h o t o - s l o t   i m g   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
 }  
  
 . l a - c e n t e r - c o n t a i n e r   {  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   5 p x ;  
         z - i n d e x :   1 0 0 ;  
         p o i n t e r - e v e n t s :   n o n e ;   / *   K l i c k s   g e h e n   d u r c h   a u f   d a s   D i a g r a m m   f a l l s   n Ã ¶ t i g   * /  
 }  
  
 . l a - c e n t e r - c o n t a i n e r . p o s - t o p   {   t o p :   2 0 p x ;   }  
 . l a - c e n t e r - c o n t a i n e r . p o s - b o t t o m   {   b o t t o m :   2 0 p x ;   }  
  
 . l a - b o x - m a i n ,   . l a - b o x - s u b   {  
         b a c k g r o u n d :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 8 5 ) ;   / *   A k z e n t - G r Ã ¼ n   * /  
         b a c k d r o p - f i l t e r :   b l u r ( 5 p x ) ;  
         b o r d e r :   1 p x   s o l i d   w h i t e ;  
         c o l o r :   w h i t e ;  
         p a d d i n g :   6 p x   1 2 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         t e x t - a l i g n :   c e n t e r ;  
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 4 ) ;  
         m i n - w i d t h :   1 2 0 p x ;  
 }  
  
 . l a - b o x - s u b   {  
         b a c k g r o u n d :   r g b a ( 6 ,   7 8 ,   5 9 ,   0 . 8 ) ;   / *   D u n k l e r e s   G r Ã ¼ n   * /  
         f o n t - s i z e :   0 . 8 r e m ;  
         p a d d i n g :   4 p x   1 0 p x ;  
         m a r g i n - t o p :   5 0 p x ;   / *   V e r s c h i e b u n g   V m a x   O b e n   z u r   M i t t e   * /  
 }  
  
 . p o s - b o t t o m   . l a - b o x - s u b   {  
         m a r g i n - t o p :   0 ;  
         m a r g i n - b o t t o m :   5 0 p x ;   / *   V e r s c h i e b u n g   V m a x   U n t e n   z u r   M i t t e   * /  
 }  
  
 . l a - b o x - m a i n   s p a n ,   . l a - b o x - s u b   s p a n   {  
         c o l o r :   # f c d 3 4 d ;   / *   G e l b - A k z e n t   f Ã ¼ r   d i e   W e r t e   * /  
         f o n t - s i z e :   1 r e m ;  
 }  
  
 . q u a d - p h o t o - l a b e l   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   5 0 % ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;  
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 6 ) ;  
         c o l o r :   w h i t e ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         t e x t - a l i g n :   c e n t e r ;  
         p a d d i n g :   5 p x   0 ;  
         f o n t - w e i g h t :   7 0 0 ;  
         p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 / *   P o s i t i o n i n g   f o r   t h e   4   c o r n e r s   * /  
 . p o s - q 1   {   b o t t o m :   1 5 p x ;   l e f t :   1 5 p x ;   }       / *   L H   * /  
 . p o s - q 2   {   t o p :   1 5 p x ;   l e f t :   1 5 p x ;   }             / *   L V   * /  
 . p o s - q 3   {   t o p :   1 5 p x ;   r i g h t :   1 5 p x ;   }           / *   R V   * /  
 . p o s - q 4   {   b o t t o m :   1 5 p x ;   r i g h t :   1 5 p x ;   }     / *   R H   * /  
  
 . l a - d i s p l a y - b o x   {   d i s p l a y :   n o n e ;   }   / *   V e r a l t e t   * /  
 . s m a l l - i n p u t   {   d i s p l a y :   n o n e ;   }   / *   V e r a l t e t   * /  
  
  
 . i c o n - b t n   {  
         b a c k g r o u n d :   n o n e ;  
         b o r d e r :   n o n e ;  
         c u r s o r :   p o i n t e r ;  
         f o n t - s i z e :   1 . 2 r e m ;  
         p a d d i n g :   0 ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 1 s ;  
 }  
  
 . i c o n - b t n : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
 }  
  
 / *   P h o t o   D e l e t e   B u t t o n   O v e r l a y   * /  
 . p h o t o - d e l e t e - b t n   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   5 p x ;  
         r i g h t :   5 p x ;  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         b a c k g r o u n d :   v a r ( - - d a n g e r - c o l o r ) ;  
         c o l o r :   w h i t e ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - s i z e :   1 2 p x ;  
         f o n t - w e i g h t :   b o l d ;  
         c u r s o r :   p o i n t e r ;  
         z - i n d e x :   1 0 ;  
         b o r d e r :   1 p x   s o l i d   w h i t e ;  
         b o x - s h a d o w :   0   0   5 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;  
         l i n e - h e i g h t :   1 ;  
         u s e r - s e l e c t :   n o n e ;  
 }  
  
 . p h o t o - d e l e t e - b t n : h o v e r   {  
         b a c k g r o u n d :   # b 9 1 c 1 c ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 / *   S i c h t f l Ã ¤ c h e n - B e r e c h n u n g   ( V D V   3 6 3 )   * /  
 . c a l c - c a r d   {  
         p a d d i n g :   1 2 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         m a r g i n - b o t t o m :   0 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . c a l c - c a r d : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 0 5 ) ;  
         b o r d e r - c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
 }  
  
 . c a l c - c a r d - h e a d e r   {  
         f o n t - s i z e :   0 . 8 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         p a d d i n g - b o t t o m :   5 p x ;  
 }  
  
 . c a l c - g r i d - i n n e r   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         g a p :   1 2 p x ;  
 }  
  
 . c a l c - i n p u t   l a b e l   {  
         d i s p l a y :   b l o c k ;  
         f o n t - s i z e :   0 . 7 r e m ;  
         o p a c i t y :   0 . 7 ;  
         m a r g i n - b o t t o m :   4 p x ;  
 }  
  
 . d o c - i n p u t . c o m p a c t   {  
         p a d d i n g :   5 p x   8 p x   ! i m p o r t a n t ;  
         f o n t - s i z e :   0 . 8 5 r e m   ! i m p o r t a n t ;  
         h e i g h t :   a u t o   ! i m p o r t a n t ;  
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 2 )   ! i m p o r t a n t ;  
 }  
  
 . c a l c - r e s u l t   {  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . r e s - l b l   {  
         f o n t - s i z e :   0 . 6 5 r e m ;  
         o p a c i t y :   0 . 6 ;  
 }  
  
 . r e s - v a l   {  
         f o n t - s i z e :   1 . 2 r e m ;  
         f o n t - w e i g h t :   8 0 0 ;  
         c o l o r :   # f f f ;  
 }  
  
 . c a l c - r e s u l t . h i g h l i g h t   . r e s - v a l   {  
         c o l o r :   # f c d 3 4 d ;   / *   G e l b   f Ã ¼ r   L a   * /  
 }  
  
 . v - m i n - o v e r l a y   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   1 5 p x ;  
         b a c k g r o u n d :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 9 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ;  
         c o l o r :   w h i t e ;  
         p a d d i n g :   5 p x   1 2 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   9 0 0 ;  
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 4 ) ;  
         z - i n d e x :   1 0 ;  
         b o r d e r :   1 p x   s o l i d   w h i t e ;  
 }  
  
 . o v e r l a y - l e f t   {   l e f t :   1 5 p x ;   }  
 . o v e r l a y - r i g h t   {   r i g h t :   1 5 p x ;   }  
  
 . s i c h t - m a r k e r   {  
         w i d t h :   3 2 p x ;  
         h e i g h t :   3 2 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - w e i g h t :   b o l d ;  
         c u r s o r :   p o i n t e r ;  
         b o r d e r :   2 p x   s o l i d   w h i t e ;  
         b o x - s h a d o w :   0   0   1 2 p x   r g b a ( 0 , 0 , 0 , 0 . 6 ) ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
 }  
  
 . s i c h t - m a r k e r : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 2 )   ! i m p o r t a n t ;  
         z - i n d e x :   1 0 0 ;  
 }  
  
 # b u M a i n C o n t e n t   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 2 ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         p a d d i n g :   2 5 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         m i n - h e i g h t :   5 0 0 p x ;  
         w i d t h :   1 0 0 % ;  
         a n i m a t i o n :   f a d e I n   0 . 3 s   e a s e ;  
 }  
  
 / *   M o d a l   O v e r l a y s   * /  
 # n e w B U M o d a l   {  
         p o s i t i o n :   f i x e d ;  
         i n s e t :   0 ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 8 5 ) ;  
         d i s p l a y :   n o n e ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         z - i n d e x :   1 0 0 0 ;  
         b a c k d r o p - f i l t e r :   b l u r ( 5 p x ) ;  
 }  
  
 . m o d a l - c o n t e n t   {  
         b a c k g r o u n d :   v a r ( - - c a r d - b g ) ;  
         p a d d i n g :   3 0 p x ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         w i d t h :   4 5 0 p x ;  
         m a x - w i d t h :   9 0 % ;  
         b o x - s h a d o w :   0   2 0 p x   5 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;  
         a n i m a t i o n :   f a d e I n   0 . 3 s   e a s e ;  
 }  
  
 . m o d a l - c o n t e n t   h 3   {  
         m a r g i n - b o t t o m :   2 0 p x ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         f o n t - s i z e :   1 . 3 r e m ;  
         m a r g i n - t o p :   0 ;  
 }  
  
  
  
 