/* --- Grundstruktur und Navigation wie gehabt --- */
body {
    margin: 0;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    background: #f6f7fa;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #00b2c6 0%, #25c6da 100%);
    color: #fff;
    padding: 0.5rem 2rem;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo-area img {
    height: 42px;
    width: auto;
}

.account-area {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.sidebar {
    width: 220px;
    background: #23272f;
    color: #fff;
    position: fixed;
    top: 60px;
    left: 0;
    height: calc(100vh - 60px);
    box-shadow: 2px 0 8px rgba(0,0,0,0.06);
    z-index: 2;
    padding-top: 2rem;
}
.sidebar nav ul {
    list-style: none;
    padding: 0;
}
.sidebar nav ul li {
    margin-bottom: 1em;
}
.sidebar nav ul li a {
    display: flex;
    align-items: center;
    gap: 1em;
    color: inherit;
    text-decoration: none;
    padding: 0.7em 0.7em;
    border-left: 4px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}
.sidebar nav ul li.active a,
.sidebar nav ul li a:hover {
    background: #07b5c8;
    border-left: 4px solid #fff;
    color: #fff;
}
.sidebar nav ul li span.material-icons {
    font-size: 22px;
}

main {
    margin-left: 220px;
    padding: 2rem;
    min-height: calc(100vh - 60px);
    box-sizing: border-box;
}

.logout-link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    margin-left: 1rem;
}

.material-icons {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    vertical-align: middle;
    border: none;
    box-shadow: none;
    background: none;
    padding: 0;
}
.icon-action-btn--tests .material-icons {
    font-size: 22px;
}

/* --- Tabelle mit runden Ecken oben und unten --- */
.table-container {
    width: 100%;
    overflow-x: auto;
    background: #f6f7fa;
    padding-top: 1em;
}

.admin-table {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 1rem;
    margin: 0 auto;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 0.7em 1.2em;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    background: #151A2D;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #e6e6e6;
}

/* Abrundungen für Kopf und Fuß der Tabelle */
.admin-table th:first-child {
    border-top-left-radius: 16px;
}
.admin-table th:last-child {
    border-top-right-radius: 16px;
}
.admin-table tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
.admin-table tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.admin-table td {
    border-bottom: 1px solid #e6e6e6;
}
.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:last-child {
    border-bottom: none;
}

/* --- Icon-Badges für Buttons in der Tabelle --- */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0.1em 0.5em;
    font-size: 1.5em;
    background: #ededed;
    color: #5e5e5e;
    border: none;
    cursor: pointer;
    margin-right: 0.3em;
    transition: background 0.2s, color 0.2s;
}
.icon-badge--success {
    background: #ffffff;
    color: #dc3545;
}
.icon-badge--lock {
    background: #13c5d1;
    color: #fff;
}
.icon-badge--tests {
    background: #ffaa1d;
    color: #fff;
}
.icon-badge--save {
    background: #838e9e;
    color: #fff;
}
.icon-badge--delete {
    background: #e3342f;
    color: #fff;
}
.icon-badge:hover,
.icon-badge:active {
    filter: brightness(0.95);
}

/* --- Passwort ("*******") und Copy-Button --- */
.masked-password {
    letter-spacing: 0.2em;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.15em;
}
.copy-btn {
    background: none;
    border: none;
    color: #01b1c1;
    cursor: pointer;
    margin-left: 0.4em;
    font-size: 1.2em;
    vertical-align: middle;
    padding: 0.15em 0.2em;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.copy-btn:hover,
.copy-icon.copied-icon {
    color: #bdbdbd;
    transition: color 0.2s;
}

/* --- Formulare, Filter und Buttons --- */
.headline {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0.8em;
}

.headline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    gap: 1.2em;
}

.refresh-btn,
.refresh-btn:visited,
.refresh-btn:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.25em 0.55em;
    cursor: pointer;
    font-size: 1.1em;
    height: 2.3em;
    min-width: 2.3em;
    text-decoration: none;
    line-height: 1;
    margin-left: 0.15em;
    box-sizing: border-box;
}
.refresh-btn:hover, .refresh-btn:focus {
    background: #13b0c1;
    outline: none;
}
.refresh-btn .material-icons {
    font-size: 1.5em;
    line-height: 1;
}

.dashboard-filters {
    margin-bottom: 0.5em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.filter-form {
    display: flex;
    gap: 0.8em;
    align-items: center;
}
.filter-input, .filter-select {
    background: #fff;
    border: 1px solid #d6e9f3;
    border-radius: 6px;
    padding: 0.45em 0.9em;
    font-size: 1em;
    outline: none;
    transition: border 0.2s;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
.filter-input:focus, .filter-select:focus {
    border: 1.5px solid #01b1c1;
}
.clear-filter-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.4em;
    padding: 0.2em;
    margin-left: 0.1em;
    cursor: pointer;
    transition: color 0.2s;
}
.clear-filter-btn:hover { color: #25c6da; }

.input-payment {
    padding: 0.3em 0.7em;
    font-size: 1em;
    border: 1px solid #d6e9f3;
    border-radius: 6px;
    margin-right: 0.3em;
    background: #f8fbfd;
    transition: border 0.2s;
}
.input-payment:focus {
    border: 1.5px solid #01b1c1;
    outline: none;
}

.status-text {
    font-weight: 600;
    margin-left: 0.3em;
    font-weight: normal;
}
.status-text--success {
    color: #199cb5;
    font-weight: normal;
}

.copy-icon {
    color: #bdbdbd;
    transition: color 0.2s;
}
.copy-icon.copied-icon {
    color: #00bcd4;
}
.copy-icon:hover {
    color: #00bcd4;
}
.copy-icon:active {
    color: #6d6d6d;
}

.icon-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: #f5f5f7;
    color: #6d6d6d;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    font-size: 22px;
    box-shadow: none;
    padding: 0;
    margin: 0 2px;
    outline: none;
    text-decoration: none;
}
.icon-action-btn:focus,
.icon-action-btn:hover {
    background: #e0f7fa;
    color: #00acc1;
    box-shadow: 0 0 0 2px #b2ebf2;
}

.icon-action-btn--lock .material-icons,
.icon-action-btn--ok .material-icons,
.icon-action-btn--tests .material-icons {
    color: #6d6d6d;
}
.icon-action-btn--delete .material-icons {
    color: #e53935;
}
.icon-action-btn--lock:hover .material-icons,
.icon-action-btn--ok:hover .material-icons,
.icon-action-btn--tests:hover .material-icons,
.icon-action-btn--delete:hover .material-icons {
    color: #00bcd4;
}
.icon-action-btn[disabled],
.icon-action-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

.admin-table tbody tr:hover {
    background: #f0f1f3;
    transition: background 0.18s;
    cursor: pointer;
}

.admin-table th, .admin-table td {
    vertical-align: middle;
}

/* --- Einheitliche Höhe und Padding für Selects und Inputs in Tabellen --- */
.admin-table select, 
.admin-table input[type="text"], 
.admin-table input[type="number"],
.admin-table .filter-input,
.admin-table .input-payment {
    height: 2.3em;
    min-width: 120px;
    font-size: 1em;
    line-height: 1.2em;
    padding: 0.3em 0.9em;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #d6e9f3;
    vertical-align: middle;
    box-sizing: border-box;
    margin: 0;
    appearance: none;
}

/* --- Einheitliche Höhe für Icon- und andere Action-Buttons --- */
.icon-action-btn,
.refresh-btn,
.admin-table .icon-action-btn,
.admin-table .refresh-btn {
    height: 2.3em;
    min-width: 2.3em;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    font-size: 1.1em;
    box-sizing: border-box;
    padding: 0;
    line-height: 1.2em;
}

/* --- Speichern-Button spezielle Feinjustierung (optional, wenn zu weit oben/unten) --- */
.icon-action-btn--save {
    position: relative;
    top: 0.5px;
}

/* --- Flexbox für perfekte mittige Ausrichtung in komplexen Tabellenzellen --- */
.admin-table .cell-flex {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

/* --- Weniger vertikales Padding in schmalen Tabellenzellen --- */
.admin-table td {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

/* --- Fokus-Styles für Button/Select/Input zur besseren Bedienbarkeit --- */
.admin-table select:focus,
.admin-table input:focus,
.icon-action-btn:focus,
.refresh-btn:focus {
    border: 1.5px solid #01b1c1;
    outline: none;
}

/* --- Optional: Material-Icon immer mittig und gleich groß im Button --- */
.material-icons {
    vertical-align: middle;
    font-size: 1.3em;
    display: inline-flex;
    align-items: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 1.5em 0;
    padding: 0;
}

.pagination li {
    list-style: none;
    margin: 0 1px;
}

.pagination a,
.pagination .current {
    display: inline-block;
    min-width: 0;
    min-height: 0;
    padding: 0.12em 0.62em;
    border-radius: 6px;
    background: #fff;
    color: #23272f;
    text-decoration: none;
    border: 1px solid #d2e6ec;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    font-size: 1em;
    font-weight: 500;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    cursor: pointer;
    line-height: 1.2;
}

.pagination a:hover,
.pagination a:focus-visible {
    background: #07b5c8;
    color: #fff;
    border-color: #07b5c8;
}

.pagination .current {
    background: #07b5c8 !important;
    color: #fff !important;
    border-color: #07b5c8 !important;
    font-weight: 700;
    pointer-events: none;
    text-decoration: none !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.pagination .disabled {
    opacity: 0.47;
    cursor: not-allowed;
    background: #fafbfc;
    color: #b0b7be;
    border: 1px dashed #d2e6ec;
    border-radius: 6px;
    box-shadow: none;
    display: inline-block;
    min-width: 0;
    min-height: 0;
    padding: 0.12em 0.62em;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    margin: 0 1px;
}

.admin-table th, .admin-table td {
    vertical-align: middle;
}

.admin-table select,
.admin-table input[type="text"],
.admin-table textarea,
.admin-table .filter-input,
.admin-table .input-payment {
    height: 2.2em;
    font-size: 1em;
    line-height: 1.15em;
    padding: 0.3em 0.8em;
    border-radius: 6px;
    box-sizing: border-box;
    margin: 0;
    vertical-align: middle;
}

.admin-table .icon-action-btn,
.admin-table button,
.admin-table .refresh-btn {
    height: 2.2em;
    min-width: 2.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 2px;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 1em;
}

.admin-table form {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin: 0;
}

.admin-table textarea {
    min-height: 2.2em;
    resize: vertical;
}

.admin-table label.icon-action-btn {
    margin: 0;
    padding: 0;
}

.admin-table td {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

@media (max-width: 800px) {
    .admin-info-container { padding: 8px !important; }
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    width: 100%;
    max-width: 370px;
}

.form-label {
    font-size: 1em;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

.form-control:focus {
    border-color: #0097b2;
    box-shadow: 0 0 0 2px #b8e0e6;
}
.cp-logo {
    display: block;
    margin: 0 auto 1.5rem auto;
    height: 60px;
}
.no-data-message {
    text-align: center !important;
    color: #888;
    font-style: regular;
    padding: 20px;
}

/* ⭐ Sofortige Status-Änderungs-Animation */
.status-text.changing {
    animation: statusChange 0.3s ease;
}

@keyframes statusChange {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 10px rgba(76, 175, 80, 0.3); }
    100% { transform: scale(1); }
}

/* Verbessertes Saving-State für Pfeile */
.status-arrow.saving {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.status-arrow.saving::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ⭐ Smooth Status-Transition */
.status-text {
    transition: all 0.3s ease;
}

/* Status-Change Animation */
.status-text.changing {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

/* ⭐ Status-Navigation Styling */
.status-nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.status-arrow {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 1;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-arrow:hover:not(.disabled) {
    background-color: #e3f2fd;
    transform: scale(1.1);
}

.status-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: #ccc;
}

.status-arrow.saving {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.status-arrow.saving::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.status-text {
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Status-spezifische Farben */
.status-noch_nicht_erschienen { background-color: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }
.status-fuellt_fragebogen_aus { background-color: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.status-bereit_fuer_beratung { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status-in_beratung { background-color: #e2e3e5; color: #383d41; border: 1px solid #d6d8db; }
.status-beratung_beendet { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Toast-Animation */
.save-toast {
    position: fixed;
    top: 20px;
    right: 180px;
    background: linear-gradient(135deg, #e61744, #e61743);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.save-toast.toast-visible {
    opacity: 1;
    pointer-events: auto;
}

.save-toast::before {
    font-weight: bold;
    font-size: 16px;
}

/* Übersicht-Button Styling */
.overview-btn {
    background: #07b5c8;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.overview-btn:hover {
    background: #0097b2;
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.overview-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Spalten zentrieren */
.admin-table th:nth-child(4),
.admin-table td:nth-child(4),
.admin-table th:nth-child(5),
.admin-table td:nth-child(5) {
    text-align: center;
}

/* Animationen */
@keyframes slideInOut {
    0% { opacity: 0; transform: translateX(100%); }
    15% { opacity: 1; transform: translateX(0); }
    85% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(100%); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.icon-action-btn--disabled {
    background: #f5f5f7 !important;
    color: #c0c0c0 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.status-with-delete {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.mini-delete-btn {
    background: #dc3545;
    border: none;
    border-radius: 4px;
    padding: 2px 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.mini-delete-btn:hover {
    background: #c82333;
}

.mini-delete-btn .material-icons {
    color: white;
    font-size: 14px;
}

::selection {
  background: #07b5c8;  /* Dein Türkis */
  color: #ffffff;          /* Schriftfarbe während der Auswahl */
}
::-moz-selection {
  background: #07b5c8;
  color: #ffffff;
}

/* =============================================================
   FINAL: Einheitliches, robustes Action-Button-Design
   ============================================================= */

.icon-action-btn,
.icon-action-btn--save {
  all: unset; /* entfernt alte erbte Properties (z.B. von .admin-table Buttons) */
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif !important;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: .01em;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.55em;

  padding: .55em 1.25em;
  min-height: 2.6em;
  border-radius: 8px;
  border: 1.8px solid rgba(25, 156, 181, .55);
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;

  background: linear-gradient(180deg, #e3f8fb 0%, #c7eef5 100%);
  color: #11869a;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 2px 5px rgba(0,0,0,.06);
  transition: all .18s ease-in-out;
}

/* Spezifische Save-Farbvariante */
.icon-action-btn--save {
  background: linear-gradient(180deg, #e0f9fc 0%, #b8ecf5 100%);
  border-color: rgba(25,156,181,.6);
  color: #0f7687;
}
.icon-action-btn--save:hover {
  background: linear-gradient(180deg, #cbf2f9 0%, #a3e2f0 100%);
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  transform: translateY(-1px);
}
.icon-action-btn--save:active {
  background: linear-gradient(180deg, #a3e2f0 0%, #8fd8e9 100%);
  transform: translateY(0);
  box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
}

/* Icon-Ausrichtung */
.icon-action-btn .material-icons {
  font-size: 1.25em !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  flex-shrink: 0;
  position: relative;
  top: 0; /* stellt sicher, dass Icon vertikal mittig sitzt */
}

/* Entferne eventuelle globale Overrides */
.icon-action-btn,
.icon-action-btn--save {
  height: auto !important;
  overflow: visible !important;
  background-clip: padding-box;
}

/* Disabled-Zustand */
.icon-action-btn[disabled],
.icon-action-btn.disabled {
  opacity: .6;
  cursor: not-allowed;
  background: #e9f2f4;
  box-shadow: none;
}

/* =======================================================
   CP-MAIN-TITLE — Clean White Shadow Highlight (ohne Balken)
   ======================================================= */
:root {
  --hue: 200; /* kühles Weiß für neutrale Optik */
  --shadow: oklch(45% 0.02 var(--hue));      /* weicher Dunkelgrau-Schimmer */
  --highlight: oklch(97% 0.03 var(--hue));   /* heller Weiß-Glanz */
}

.cp-main-title {
  position: relative;
  display: inline-block;
  font-family: 'Alfa Slab One', 'Roboto Condensed', sans-serif;
  font-size: 2.6em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  padding: 0.25em 0.6em;
  margin: 0.5em 0 0 0;
  line-height: 1.1;
  border-radius: 0.6em;
  overflow: hidden;
  transition: color 0.5s ease-in-out;

  /* 💡 Weißer Text mit subtiler Kantenbeleuchtung */
  text-shadow:
    0 0.15ch 15px var(--shadow),   /* diffuser Schatten */
    0 -2px 0 var(--highlight);     /* feiner Glanz nach oben */
}

/* ✨ Desktop-Hover: Text dunkelt sanft ab, ohne Hintergrund */
@media (hover: hover) and (pointer: fine) {
  .cp-main-title:hover {
    text-shadow:
      0 0.15ch 18px rgba(0,0,0,0.5),
      0 -2px 0 rgba(255,255,255,0.3);
  }
}

/* 📱 Mobile: gleichbleibend weiß */
@media (hover: none), (pointer: coarse) {
  .cp-main-title {
    color: #fff;
    text-shadow:
      0 0.15ch 5px var(--shadow),
      0 -2px 0 var(--highlight);
  }
}




