baustelle-pwa/app.css
Eddy 427fdeb0c0
All checks were successful
Deploy baustelle-pwa / deploy (push) Successful in 5s
PWA: Android-Zurück-Button-Fix + Datei-Teilen via Share-Sheet [deploy]
- Modal-Stack mit History-API: jedes Modal pusht einen History-Eintrag,
  Android-Zurück schließt das Modal statt die App zu beenden
- Top-Level-Routen: "Nochmal drücken zum Beenden"-Toast (2s Fenster)
- shareFile()/shareFiles(): native Android-Share-Sheet für Fotos, PDFs, Dokumente
- Multi-Select in Fotogalerie: Mehrere Fotos gleichzeitig auswählen und teilen
- PDF-Teilen: auto-.pdf-Extension damit Android-Apps die Datei akzeptieren
- openPdfModal: Share-Button neben Download-Button

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-18 12:33:31 +02:00

1029 lines
23 KiB
CSS

/* Baustelle PWA — Mobile-first CSS */
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #1a1a1f;
color: #f0f0f0;
-webkit-font-smoothing: antialiased;
overscroll-behavior-y: contain;
}
#app {
display: flex;
flex-direction: column;
min-height: 100vh;
min-height: 100dvh;
}
#topbar {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 16px;
background: #25252b;
border-bottom: 1px solid #333;
position: sticky;
top: 0;
z-index: 10;
}
#topbar h1 {
flex: 1;
margin: 0;
font-size: 17px;
font-weight: 600;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.icon-btn {
background: transparent;
border: none;
color: #f0f0f0;
font-size: 22px;
padding: 4px 8px;
cursor: pointer;
-webkit-appearance: none;
}
#status-badge { font-size: 14px; }
#main {
flex: 1;
padding: 16px;
padding-bottom: 90px; /* Platz für FAB, damit letzter Listeneintrag nicht verdeckt wird */
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
#bottom-nav {
display: flex;
background: #25252b;
border-top: 1px solid #333;
padding-bottom: env(safe-area-inset-bottom);
}
#bottom-nav button {
flex: 1;
background: transparent;
border: none;
color: #888;
padding: 14px 8px;
font-size: 12px;
cursor: pointer;
}
#bottom-nav button.active { color: #7aa2f7; }
/* ----- FAB (Neuer Auftrag) ----- */
.fab {
position: fixed;
right: 18px;
bottom: calc(68px + env(safe-area-inset-bottom, 0px));
width: 56px;
height: 56px;
border-radius: 50%;
border: none;
font-size: 30px;
line-height: 1;
font-weight: 300;
background: rgba(122, 162, 247, 0.85);
color: #fff;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
z-index: 50;
cursor: pointer;
transition: transform 0.1s ease, background 0.15s ease;
}
.fab:active { transform: scale(0.92); background: rgba(122, 162, 247, 1); }
.fab[hidden] { display: none; }
/* ----- Neuer Auftrag Modal (nutzt .fullscreen-modal) ----- */
.new-order-customer-row {
display: flex;
gap: 10px;
padding: 10px 12px;
background: #2a2a30;
border: 1px solid #3a3a42;
border-radius: 8px;
margin-bottom: 10px;
align-items: center;
}
.new-order-customer-row .nc-name { font-weight: 600; flex: 1; }
.new-order-customer-row .nc-meta { color: #888; font-size: 12px; }
.new-order-customer-row .nc-change {
background: transparent; border: 1px solid #555;
color: #7aa2f7; border-radius: 6px; padding: 4px 10px; cursor: pointer;
}
.new-order-defaults {
font-size: 12px; color: #aaa;
padding: 6px 12px; margin-bottom: 10px;
border-left: 2px solid #7aa2f7;
}
.new-order-customer-search {
display: block; width: 100%;
padding: 12px; border-radius: 8px;
border: 1px solid #444; background: #2a2a30; color: #eee;
font-size: 15px; margin-bottom: 8px;
}
.new-order-customer-list {
max-height: 45vh; overflow-y: auto;
border: 1px solid #333; border-radius: 8px; background: #222228;
}
.new-order-customer-list .nc-item {
padding: 12px; border-bottom: 1px solid #2a2a30; cursor: pointer;
}
.new-order-customer-list .nc-item:last-child { border-bottom: none; }
.new-order-customer-list .nc-item:active { background: #2e2e35; }
.new-order-customer-list .nc-item .nc-sub { color: #888; font-size: 12px; }
.new-order-customer-list .nc-item.recent { background: rgba(122,162,247,0.06); }
.new-order-empty { padding: 16px; color: #888; text-align: center; }
/* ----- Login ----- */
.login-form {
max-width: 360px;
margin: 60px auto 0;
text-align: center;
}
.login-form h2 { margin: 0 0 24px; font-weight: 600; }
.login-form input {
display: block;
width: 100%;
padding: 16px;
margin-bottom: 12px;
border-radius: 8px;
border: 1px solid #444;
background: #2a2a30;
color: #f0f0f0;
font-size: 16px;
-webkit-appearance: none;
}
.login-form input:focus { outline: 2px solid #337ab7; }
/* ----- Buttons ----- */
.btn {
display: block;
width: 100%;
padding: 16px 20px;
font-size: 16px;
font-weight: 600;
border-radius: 10px;
border: none;
cursor: pointer;
background: #337ab7;
color: #fff;
margin: 8px 0;
-webkit-appearance: none;
transition: transform 0.1s;
}
.btn:active { transform: scale(0.97); }
.btn-secondary {
background: #2a2a30;
border: 1px solid #444;
color: #f0f0f0;
}
.btn-large { padding: 22px; font-size: 18px; }
.btn-danger {
background: #d9534f;
color: #fff;
margin-top: 24px;
}
.btn-danger:active { background: #c9302c; }
.hidden-input { display: none; }
/* ----- Order List ----- */
.search-bar {
margin-bottom: 12px;
}
.search-bar input[type="search"] {
width: 100%;
padding: 12px 16px;
border-radius: 24px;
border: 1px solid #444;
background: #2a2a30;
color: #f0f0f0;
font-size: 15px;
-webkit-appearance: none;
}
.filter-toggle {
display: flex;
align-items: center;
gap: 8px;
margin-top: 8px;
font-size: 14px;
color: #aaa;
cursor: pointer;
}
.filter-toggle input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #7aa2f7;
}
.order-card {
background: #25252b;
border-radius: 10px;
padding: 14px 16px;
margin-bottom: 10px;
cursor: pointer;
transition: background 0.15s;
}
.order-card:active { background: #2f2f35; }
.order-card .ref {
font-weight: 600;
color: #7aa2f7;
font-size: 14px;
}
.order-card .ref-client {
font-weight: 400;
color: #aaa;
font-size: 13px;
}
.order-card .name {
font-size: 15px;
margin-top: 4px;
}
.order-card .meta {
display: flex;
justify-content: space-between;
margin-top: 6px;
font-size: 12px;
opacity: 0.7;
}
.order-card .badge {
background: #337ab7;
color: #fff;
padding: 2px 8px;
border-radius: 10px;
font-size: 11px;
font-weight: 600;
}
/* ----- Order Detail ----- */
.detail-section {
background: #25252b;
border-radius: 10px;
padding: 14px 16px;
margin-bottom: 12px;
}
.detail-section h3 {
margin: 0 0 8px;
font-size: 13px;
text-transform: uppercase;
color: #7aa2f7;
letter-spacing: 0.5px;
}
.detail-section p { margin: 4px 0; font-size: 14px; }
.detail-section .label { opacity: 0.6; font-size: 12px; }
.photo-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
gap: 6px;
margin-top: 10px;
max-width: 600px;
}
.photo-grid .thumb {
aspect-ratio: 1;
max-width: 160px;
background: #2a2a30;
border-radius: 6px;
overflow: hidden;
position: relative;
cursor: pointer;
}
.photo-grid .thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.photo-grid .thumb-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
opacity: 0.5;
}
/* Foto-Section Kopfzeile mit Auswahl-Toggle */
.photo-section-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
margin: 0 0 6px;
}
.btn-small {
padding: 6px 10px;
font-size: 13px;
border-radius: 6px;
background: #2a2a30;
color: #eee;
border: 1px solid #444;
cursor: pointer;
}
.btn-small:hover { background: #33333a; }
/* Auswahl-Mode im Photo-Grid */
.photo-grid .thumb .thumb-check {
position: absolute;
top: 6px;
right: 6px;
width: 26px;
height: 26px;
border-radius: 50%;
background: rgba(0,0,0,0.55);
color: #fff;
display: none;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: bold;
border: 2px solid #fff;
pointer-events: none;
}
.photo-grid.selecting .thumb-check { display: flex; opacity: 0.35; }
.photo-grid.selecting .thumb.selected { outline: 3px solid #5ab0ff; outline-offset: -3px; }
.photo-grid.selecting .thumb.selected .thumb-check {
opacity: 1;
background: #5ab0ff;
border-color: #fff;
}
/* Sticky Aktions-Bar am unteren Bildschirmrand */
.select-bar {
position: fixed;
left: 0; right: 0;
bottom: 0;
padding: 10px 14px;
padding-bottom: calc(10px + env(safe-area-inset-bottom));
background: rgba(20,20,25,0.95);
border-top: 1px solid #333;
display: flex;
align-items: center;
gap: 12px;
z-index: 90;
backdrop-filter: blur(6px);
}
.select-bar .sb-info {
flex: 1;
color: #eee;
font-size: 14px;
}
.select-bar .icon-btn {
color: #fff;
font-size: 20px;
padding: 6px 10px;
}
.select-bar .icon-btn:disabled { opacity: 0.35; cursor: default; }
/* ----- Toast ----- */
#toast-container {
position: fixed;
top: 16px;
left: 16px;
right: 16px;
z-index: 100;
pointer-events: none;
}
.toast {
background: #5cb85c;
color: #fff;
padding: 14px 16px;
border-radius: 8px;
margin-bottom: 8px;
text-align: center;
box-shadow: 0 4px 16px rgba(0,0,0,0.4);
animation: slide-down 0.2s;
pointer-events: auto;
}
.toast.error { background: #d9534f; }
.toast.warn { background: #f0ad4e; }
@keyframes slide-down { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; } }
.empty-state {
text-align: center;
padding: 40px 20px;
opacity: 0.6;
}
.empty-state .icon { font-size: 48px; margin-bottom: 12px; }
/* Loader */
.loader {
text-align: center;
padding: 40px;
opacity: 0.6;
}
.status-draft {
background: #6c757d;
color: #fff;
font-size: 10px;
padding: 2px 6px;
border-radius: 8px;
margin-left: 6px;
vertical-align: middle;
}
.status-final {
background: #5cb85c;
color: #fff;
font-size: 10px;
padding: 2px 6px;
border-radius: 8px;
margin-left: 6px;
vertical-align: middle;
}
/* ============================================================
* Fullscreen Modals (Foto-Vollbild, Voice, Sketch)
* ============================================================ */
.fullscreen-modal {
position: fixed;
inset: 0;
background: #000;
z-index: 1000;
display: flex;
flex-direction: column;
padding-top: env(safe-area-inset-top);
padding-bottom: env(safe-area-inset-bottom);
}
.fs-header {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 12px;
background: rgba(0,0,0,0.7);
color: #fff;
border-bottom: 1px solid #222;
flex-wrap: wrap;
}
.fs-header .fs-title {
flex: 1;
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.fs-header .icon-btn { color: #fff; }
.fs-body {
flex: 1;
overflow: auto;
display: flex;
align-items: center;
justify-content: center;
padding: 12px;
}
.fs-body img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
/* Voice Modal */
.voice-modal .voice-body {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
gap: 16px;
color: #fff;
}
.voice-indicator {
font-size: 80px;
color: #444;
transition: color 0.3s;
}
.voice-indicator.recording {
color: #d9534f;
animation: pulse 1s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.voice-time {
font-size: 32px;
font-variant-numeric: tabular-nums;
color: #7aa2f7;
}
/* Sketch Modal */
.sketch-modal .sketch-body {
flex: 1;
background: #222;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.sketch-modal .sketch-body canvas {
background: #fff;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
touch-action: none;
}
.sketch-toolbar {
display: flex;
align-items: center;
gap: 4px;
padding: 8px 12px;
background: #1a1a1f;
border-bottom: 1px solid #333;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.sketch-toolbar button {
background: #2a2a30;
color: #fff;
border: 1px solid #444;
border-radius: 6px;
padding: 8px 12px;
font-size: 16px;
cursor: pointer;
flex-shrink: 0;
}
.sketch-toolbar button.active {
background: #337ab7;
border-color: #2868a0;
}
.sketch-toolbar .sep {
width: 1px;
background: #444;
height: 24px;
margin: 0 6px;
flex-shrink: 0;
}
.sketch-toolbar input[type="color"] {
width: 40px;
height: 36px;
border: 1px solid #444;
background: #2a2a30;
border-radius: 6px;
padding: 2px;
flex-shrink: 0;
}
.sketch-toolbar input[type="range"] {
width: 100px;
flex-shrink: 0;
}
/* Audio-Items in Auftrags-Detail */
.audio-list { display: flex; flex-direction: column; gap: 8px; }
.audio-item {
background: #2a2a30;
border-radius: 6px;
padding: 10px 12px;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.audio-item .audio-name {
flex: 1;
font-size: 13px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.audio-item .audio-play {
background: #337ab7;
color: #fff;
border: none;
border-radius: 50%;
width: 36px;
height: 36px;
font-size: 14px;
cursor: pointer;
flex-shrink: 0;
}
.audio-item audio { width: 100%; flex-basis: 100%; }
.audio-item .audio-transcribe {
background: #2a2a30;
color: #7aa2f7;
border: 1px solid #444;
border-radius: 50%;
width: 36px;
height: 36px;
font-size: 14px;
cursor: pointer;
flex-shrink: 0;
}
.audio-transcript {
flex-basis: 100%;
background: #1a1a1f;
padding: 10px 12px;
margin-top: 6px;
border-radius: 4px;
border-left: 3px solid #7aa2f7;
font-size: 13px;
line-height: 1.5;
color: #e0e0e0;
white-space: pre-wrap;
}
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
/* Weitere Dokumente (Auftrags-Detail) */
.doc-list { display: flex; flex-direction: column; gap: 8px; }
.doc-item {
background: #2a2a30;
border-radius: 6px;
padding: 10px 12px;
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
transition: background 0.15s;
}
.doc-item:hover { background: #33333a; }
.doc-item.loading { opacity: 0.6; pointer-events: none; }
.doc-item .doc-icon { font-size: 22px; flex-shrink: 0; }
.doc-item .doc-meta { flex: 1; min-width: 0; }
.doc-item .doc-name {
font-size: 14px;
color: #e0e0e0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.doc-item .doc-sub { font-size: 11px; color: #888; margin-top: 2px; }
.doc-item .doc-open {
background: #337ab7;
color: #fff;
border: none;
border-radius: 50%;
width: 32px;
height: 32px;
font-size: 14px;
cursor: pointer;
flex-shrink: 0;
}
/* Doc-Viewer (Bilder) */
.doc-viewer-modal .dv-body {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
background: #1a1a1f;
overflow: hidden;
}
.doc-viewer-modal .fs-header a.icon-btn {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
/* PDF-Viewer */
.pdf-viewer-modal .fs-header {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}
.pdf-viewer-modal .fs-title { order: 4; }
.pdf-viewer-modal .icon-btn:nth-of-type(1) { order: 1; }
.pdf-viewer-modal .pdf-page-info { order: 2; font-size: 12px; color: #aaa; }
.pdf-viewer-modal .icon-btn:nth-of-type(2) { order: 3; }
.pdf-viewer-modal .icon-btn:nth-of-type(3) { order: 5; } /* close */
.pdf-viewer-modal .icon-btn:nth-of-type(4) { order: 6; } /* share */
.pdf-viewer-modal .icon-btn:nth-of-type(5) { order: 7; } /* download */
.pdf-viewer-modal .fs-header a { order: 7; }
.pdf-body {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
background: #f5f5f5;
overflow: auto;
padding: 8px;
}
.pdf-body canvas { max-width: 100%; height: auto; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
/* PIN-Modal */
.pin-modal .pin-body {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 24px;
background: #1a1a1f;
}
.pin-modal .pin-icon { font-size: 56px; margin-bottom: 12px; }
.pin-modal .pin-title { font-size: 18px; color: #e0e0e0; margin-bottom: 24px; }
.pin-modal .pin-display {
display: flex; gap: 16px; margin-bottom: 32px;
}
.pin-modal .pin-display span {
width: 18px; height: 18px; border-radius: 50%;
border: 2px solid #7aa2f7; background: transparent;
transition: background 0.1s;
}
.pin-modal .pin-display span.filled { background: #7aa2f7; }
.pin-modal .pin-keypad {
display: grid;
grid-template-columns: repeat(3, 72px);
gap: 12px;
}
.pin-modal .pin-key {
width: 72px; height: 72px;
border-radius: 50%;
background: #2a2a30;
color: #fff;
border: 1px solid #444;
font-size: 24px;
cursor: pointer;
-webkit-appearance: none;
}
.pin-modal .pin-key:active { background: #3a3a40; transform: scale(0.97); }
.pin-modal .pin-cancel {
margin-top: 32px;
background: transparent;
border: none;
color: #999;
cursor: pointer;
font-size: 14px;
}
/* Toggle-Row für Settings */
.toggle-row {
display: flex; align-items: center; gap: 10px;
padding: 10px 0;
cursor: pointer;
}
.toggle-row input[type="checkbox"] {
width: 18px; height: 18px;
accent-color: #337ab7;
}
/* Mini-Cards für Kundendetail (Aufträge/Rechnungen/Berichte) */
.mini-card {
background: #2a2a30;
border-radius: 6px;
padding: 10px 12px;
margin-bottom: 6px;
cursor: pointer;
transition: background 0.15s;
}
.mini-card:active { background: #35353b; }
.mini-card .mini-ref {
font-weight: 600;
color: #7aa2f7;
font-size: 13px;
}
.mini-card .mini-meta {
font-size: 12px;
opacity: 0.7;
margin-top: 3px;
}
.customer-actions {
display: flex;
gap: 8px;
margin-top: 12px;
}
.customer-actions a {
text-decoration: none;
text-align: center;
flex: 1;
}
/* Report-Page-Thumb mit Nummer */
.report-page-thumb { position: relative; transition: transform 0.1s, opacity 0.1s; }
.report-page-thumb.dragging {
opacity: 0.6;
transform: scale(1.05);
box-shadow: 0 4px 20px rgba(51, 122, 183, 0.5);
}
.report-page-thumb .page-num {
position: absolute;
top: 4px; left: 4px;
background: rgba(0,0,0,0.7);
color: #fff;
font-size: 11px;
padding: 2px 6px;
border-radius: 10px;
font-weight: 600;
}
.report-page-thumb .page-title-badge {
position: absolute;
bottom: 0; left: 0; right: 0;
background: rgba(0,0,0,0.75);
color: #fff;
font-size: 10px;
padding: 3px 6px;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Unterschrift-Modal */
.signature-modal .signature-meta {
padding: 12px 16px;
background: #1a1a1f;
border-bottom: 1px solid #333;
display: flex;
flex-direction: column;
gap: 8px;
}
.signature-modal .signature-meta input[type="text"] {
width: 100%;
padding: 12px 14px;
background: #2a2a30;
color: #fff;
border: 1px solid #444;
border-radius: 6px;
font-size: 15px;
box-sizing: border-box;
}
.signature-modal .sig-gps-label {
color: #e0e0e0;
font-size: 13px;
display: flex;
align-items: center;
gap: 8px;
}
.signature-modal .sig-legal {
color: #999;
font-size: 11px;
line-height: 1.4;
}
.signature-modal .signature-toolbar {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 16px;
background: #1a1a1f;
border-bottom: 1px solid #333;
}
.signature-modal .signature-toolbar button {
background: #2a2a30;
color: #fff;
border: 1px solid #444;
border-radius: 6px;
padding: 8px 14px;
cursor: pointer;
}
.signature-modal .sig-hint {
opacity: 0.6;
font-size: 13px;
}
.signature-modal .signature-body {
flex: 1;
background: #222;
padding: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.signature-modal canvas {
background: #fff;
width: 100%;
max-width: 900px;
aspect-ratio: 2 / 1;
border-radius: 6px;
touch-action: none;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
/* Hilfe-Modal */
.help-modal .help-body {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: 20px;
color: #e0e0e0;
max-width: 780px;
margin: 0 auto;
width: 100%;
box-sizing: border-box;
background: #1a1a1f;
}
.help-modal h2 {
color: #7aa2f7;
margin: 0 0 20px;
font-size: 22px;
}
.help-modal section {
background: #25252b;
border-radius: 10px;
padding: 14px 18px;
margin-bottom: 14px;
}
.help-modal section h3 {
color: #7aa2f7;
font-size: 16px;
margin: 0 0 10px;
}
.help-modal p { margin: 6px 0; line-height: 1.5; font-size: 14px; }
.help-modal ul { margin: 6px 0 6px 20px; padding: 0; }
.help-modal li { margin: 4px 0; font-size: 14px; line-height: 1.5; }
.help-modal strong { color: #fff; }
.help-modal .tip {
background: rgba(122, 162, 247, 0.1);
border-left: 3px solid #7aa2f7;
padding: 10px 12px;
border-radius: 4px;
margin: 10px 0;
font-size: 13px;
}
.help-modal .status-badge-help {
background: #2a2a30;
padding: 2px 8px;
border-radius: 10px;
font-size: 12px;
border: 1px solid #444;
}
.help-modal .help-footer {
margin-top: 24px;
padding-top: 16px;
border-top: 1px solid #333;
text-align: center;
opacity: 0.6;
font-size: 12px;
}
/* help-btn in Topbar kleiner machen */
#help-btn { font-size: 18px; padding: 4px 8px; }
/* ========== Photo Viewer mit Zoom + Swipe ========== */
.photo-viewer-modal .pv-body {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
touch-action: none;
background: #000;
}
.photo-viewer-modal #pv-image {
max-width: 100%;
max-height: 100%;
object-fit: contain;
transform-origin: center center;
transition: transform 0.15s ease-out, opacity 0.2s;
cursor: grab;
user-select: none;
-webkit-user-drag: none;
}
.photo-viewer-modal #pv-image.dragging {
cursor: grabbing;
transition: none;
}
.photo-viewer-modal .pv-counter {
font-size: 13px;
color: #888;
margin-left: auto;
margin-right: 8px;
}
.photo-viewer-modal .pv-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 80px;
border: none;
background: rgba(255, 255, 255, 0.1);
color: #fff;
font-size: 32px;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
}
.photo-viewer-modal .pv-nav:disabled { opacity: 0.2; cursor: default; }
.photo-viewer-modal .pv-prev { left: 8px; }
.photo-viewer-modal .pv-next { right: 8px; }
.photo-viewer-modal .pv-zoom-btns {
position: absolute;
bottom: 16px;
right: 12px;
display: flex;
gap: 8px;
z-index: 10;
}
.photo-viewer-modal .pv-zoom-btns button {
width: 40px;
height: 40px;
border: none;
background: rgba(255, 255, 255, 0.15);
color: #fff;
font-size: 20px;
cursor: pointer;
border-radius: 6px;
}
.photo-viewer-modal .pv-zoom-btns button:active {
background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 600px) {
.photo-viewer-modal .pv-nav { width: 40px; height: 60px; font-size: 24px; }
.photo-viewer-modal .pv-zoom-btns button { width: 36px; height: 36px; font-size: 18px; }
}