/* NautiApp - Master Stylesheet 
    Version: 3.8 (Ultra-Smooth Submenu Edition)
*/

:root {
    --nauti-blue: #005596;
    --nauti-bg: #f0f4f7;
    --nauti-white: #ffffff;
}

/* --- Basis & Layout --- */
body {
    background-color: var(--nauti-bg);
    margin: 0; 
    padding: 0;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #444;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--nauti-blue);
    line-height: 1.3;
}

.container {
    width: 85% !important;
    margin: 0 auto;
}

/* --- Header & Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 20px 0;
    position: relative;
    z-index: 1100; /* Erhöht, damit Hamburger und Menü immer oben liegen */
}

/* Brand-Einheit: Relativ für das absolute Logo */
.navbar-brand {
    display: flex;
    flex-direction: column; 
    align-items: center;
    position: relative; 
    color: var(--nauti-blue) !important;
    text-decoration: none;
    font-weight: bold;
}

.nauti-brand-text {
    font-size: 1.8rem;
    line-height: 1;
    display: inline-block;
}

.nauti-nav-logo {
    position: absolute;
    top: 100%;             
    left: 0;
    width: 100%;           
    height: auto;          
    margin-top: 15px;       /* Deine Einstellung: 15px */
    display: block;
    z-index: 100;          
}

/* Hamburger Icon Styling */
.menu-toggle {
    display: none; /* Nur auf Mobile sichtbar */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1200;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--nauti-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.dropmenu ul {
    display: flex;
    list-style: none;
    margin: 0; 
    padding: 0;
}

.dropmenu ul li {
    position: relative;
}

.dropmenu ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--nauti-blue) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- Untermenü Logik (NautiApp Ultra-Smooth Desktop) --- */
.dropmenu ul li ul {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    display: block !important; 
    visibility: hidden;
    
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 2.0s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                visibility 0.4s;

    flex-direction: column !important;
    background-color: rgba(240, 244, 247, 0.05) !important; 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    min-width: 240px;
    z-index: 1000;
    border-top: 0px solid var(--nauti-blue);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 0; 
    margin: 0;
}

.dropmenu ul li ul.is-open {
    max-height: 600px; 
    opacity: 1;
    visibility: visible;
    padding: 10px 0 !important;
    border-top: 3px solid var(--nauti-blue) !important;
}

.dropmenu ul li ul li a {
    padding: 12px 25px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,85,150,0.05);
    background: transparent;
}

.dropmenu ul li ul li a:hover {
    background-color: var(--nauti-blue);
    color: white !important;
}

/* --- Bilder --- */
#header-image {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    z-index: 1; 
}

.header-home, .header-sub { height: 226px; }

/* --- Content & Willkommenstext --- */
.main-welcome-content {
    margin-top: 100px; 
    margin-bottom: 50px;
    width: 100%;
    line-height: 1.6;
}

.main-welcome-content h1, 
.main-welcome-content h2, 
.main-welcome-content h3 {
    text-align: center !important;
}

.main-welcome-content p {
    text-align: left !important;
}






/* --- Nauti-Boxen System --- */
.nauti-grid {
    margin-top: 20px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding-bottom: 50px;
}

.nauti-box {
    position: relative; /* Sorgt dafür, dass der Link nicht aus der Box "rausfällt" */
    width: 400px;
    height: auto;
    background: var(--nauti-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.nauti-box:hover {
    transform: translateY(-8px); /* Die Box gleitet leicht nach oben */
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Der Schatten wird weicher und tiefer */
    border-color: var(--nauti-blue); /* Optional: Ein feiner blauer Rand erscheint */
    cursor: pointer;
}

.nauti-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.nauti-box-content {
    padding: 25px !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nauti-box-content img {
    display: none !important;
}

.nauti-box-content h3 {
    text-align: center !important;
    margin-top: 5px !important;
    margin-bottom: 25px !important;
    font-size: 1.5rem;
}

.nauti-box-content p {
    text-align: left !important;
    line-height: 1.6;
    color: #444;
    hyphens: auto;
    word-break: break-word;
}

/*
   Button innerhalb der alten Nauti-Boxen.
   Die frühere ::after-Lösung mit margin-top: -500px
   wurde entfernt, weil dadurch die Hover- und Klickfläche
   weit über den sichtbaren Button hinausging.
*/
.nauti-box .nauti-btn {
    position: relative;
    z-index: 2;
}

.nauti-box .nauti-btn::after {
    content: none;
    display: none;
}

    .nauti-fact p,
.nauti-card p {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
}




/* ============================================================
    MOBILE OPTIMIERUNG (Neu: Hamburger & Smooth Overlay)
   ============================================================ */

@media screen and (max-width: 768px) {
    .container {
        width: 92% !important;
        padding: 0 10px !important;
    }

    .menu-toggle {
        display: flex;
    } /* Zeige Hamburger */

    /* Navigation als Overlay */
    .dropmenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(240, 244, 247, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1050;
        border-bottom: 3px solid var(--nauti-blue);

        /* Smooth Aufblättern Logik - Deine Einstellung: 2.0s */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 2.0s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.4s ease;
    }

    /* Zustand wenn offen */
    .dropmenu.is-active {
        max-height: 100vh;
        opacity: 1;
        visibility: visible;
        padding: 20px 0;
    }

    /* Hamburger Animation zu 'X' */
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Logo & Text auf Mobile */
    .nauti-brand-text {
        font-size: 1.4rem !important;
    }

    body {
        font-size: 16px !important;
    }

    .main-welcome-content h1 {
        font-size: 1.7rem !important;
    }

    .main-welcome-content p {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
    }

    .nauti-grid {
        gap: 25px !important;
        margin-top: 10px !important;
    }

    .nauti-box {
        width: 100% !important;
        min-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .nauti-box img {
        height: 200px !important;
    }

    .main-welcome-content {
        margin-top: 40px !important;
    }

    .header-home,
    .header-sub {
        height: 180px !important;
    }

    .dropmenu ul {
        flex-direction: column;
        width: 100%;
    }

    /* Mobile Untermenüs - JETZT AUCH SMOOTH */
    .dropmenu ul li ul {
        position: static !important;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        border-left: 4px solid var(--nauti-blue);
        margin-left: 20px;
        background: transparent !important;
        box-shadow: none !important;
        overflow: hidden;

        /* Zeitfaktor angepasst auf 2.0s für maximale Smoothness */
        transition:
            max-height 2.0s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.8s ease;
    }

    .dropmenu ul li ul.is-open {
        max-height: 800px; /* Genug Platz für die Unterpunkte */
        opacity: 1;
        visibility: visible;
        padding: 10px 0 !important;
    }
}

/* --- Buttons & Info --- */
.btn-inline {
    display: inline-block;
    background-color: var(--nauti-blue);
    color: white !important;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    font-size: 1rem;
    margin-left: 10px;
    transition: background 0.3s ease;
    vertical-align: middle;
    border: none;
}

.btn-inline:hover {
    background-color: #003d6b;
    text-decoration: none;
}

.update-info {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 20px;
}





/* =========================================================
   NAUTIAPP – SEITENBOXEN / CARDS
   ========================================================= */

.nauti-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 28px 0;
}

/* 3-spaltige Variante der bestehenden Nauti-Card-Grid */
.nauti-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 760px) {
    .nauti-card-grid-3 {
        grid-template-columns: 1fr;
    }
}


.nauti-card {
    background: #ffffff;
    border: 1px solid #dfe6ec;
    border-top: 5px solid #005596;
    border-radius: 7px;
    padding: 22px 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.nauti-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,85,150,0.14);
    border-color: rgba(0,85,150,0.40);
}

.nauti-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #005596;
}

.nauti-card p:last-child,
.nauti-card ul:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NAUTIAPP – FACT BOXEN
   ========================================================= */

.nauti-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.nauti-fact {
    background: #ffffff;
    border: 1px solid #dfe6ec;
    border-top: 5px solid #005596;
    border-radius: 7px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.nauti-fact:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,85,150,0.14);
    border-color: rgba(0,85,150,0.40);
}

.nauti-fact strong {
    display: block;
    color: #005596;
    margin-bottom: 8px;
    font-size: 1.05rem;
}


/* =========================================================
   NAUTIAPP – ALLGEMEINE BUTTONS
   Weiß / blau umrandet
   Hover: blau / weiß
   ========================================================= */

.nauti-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0;
}

.nauti-btn {
    display: inline-block;
    position: relative;
    padding: 11px 20px;
    background: #ffffff;
    color: #005596 !important;
    border: 2px solid #005596;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/*
   Sicherheitshalber auch bei den allgemeinen Buttons:
   keine unsichtbare, vom Theme oder älteren CSS erzeugte
   Pseudo-Fläche außerhalb des sichtbaren Buttons.
*/
.nauti-btn::after {
    content: none;
    display: none;
}

.nauti-btn:hover,
.nauti-btn:focus-visible {
    background: #005596;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(0,85,150,0.22);
}

.nauti-btn:active {
    transform: translateY(0);
}


/* =========================================================
   NAUTIAPP – KURSBOXEN
   Hover stabil – nur der sichtbare Button ist klickbar
   ========================================================= */

.nauti-course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 28px 0;
    position: relative;
    isolation: isolate;
}

.nauti-course-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;

    background: #ffffff;
    border: 1px solid #dfe6ec;
    border-top: 6px solid #005596;
    border-radius: 7px;
    padding: 22px 24px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.06);

    transition:
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        translate 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .nauti-course-card:hover {
        z-index: 2;
        translate: 0 -4px;
        border-color: rgba(0,85,150,0.42);
        box-shadow: 0 12px 26px rgba(0,85,150,0.16);
    }
}

.nauti-course-card h3 {
    margin: 0 0 10px 0;
    color: #005596;
}

.nauti-course-card p {
    flex: 1;
    margin-top: 0;
}

/*
   Eigene Buttonklasse innerhalb der Kursboxen.
   Damit wird verhindert, dass Theme-Regeln den Link
   über die gesamte Karte oder darüber hinaus ziehen.
*/
.nauti-course-card > a.nauti-course-btn {
    position: relative !important;
    inset: auto !important;
    z-index: 3;

    display: inline-block;
    align-self: flex-start;

    width: auto !important;
    height: auto !important;
    margin: 10px 0 0 0;
    padding: 10px 18px;

    background: #ffffff;
    color: #005596 !important;

    border: 2px solid #005596;
    border-radius: 5px;

    text-decoration: none !important;
    font-weight: 700;
    line-height: 1.3;

    box-shadow: 0 2px 5px rgba(0,0,0,0.08);

    transform: none !important;
    translate: none !important;

    transition:
        background-color 0.20s ease,
        color 0.20s ease,
        box-shadow 0.20s ease;
}

.nauti-course-card > a.nauti-course-btn::before,
.nauti-course-card > a.nauti-course-btn::after {
    content: none !important;
    display: none !important;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
}

.nauti-course-card > a.nauti-course-btn:hover,
.nauti-course-card > a.nauti-course-btn:focus-visible {
    background: #005596;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(0,85,150,0.22);

    transform: none !important;
    translate: none !important;
}

.nauti-course-card > a.nauti-course-btn:active {
    background: #003f70;
    color: #ffffff !important;
}


/* =========================================================
   NAUTIAPP – VERGLEICHSBOXEN
   ========================================================= */

.nauti-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 28px 0;
}

.nauti-compare-card {
    background: #ffffff;
    border: 1px solid #dfe6ec;
    border-top: 6px solid #005596;
    border-radius: 7px;
    padding: 22px 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.nauti-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,85,150,0.14);
    border-color: rgba(0,85,150,0.40);
}

.nauti-compare-card h3 {
    margin-top: 0;
    color: #005596;
}

.nauti-compare-card ul {
    margin-bottom: 0;
}


/* =========================================================
   NAUTIAPP – FAQ
   Blaue Markierung LINKS
   Etwas deutlichere Bewegung beim Mouseover
   ========================================================= */

.nauti-faq-container {
    margin: 28px 0;
}

.nauti-faq-container details {
    background: #ffffff;
    border: 1px solid #dfe6ec;
    border-left: 5px solid #005596;
    border-radius: 7px;
    margin-bottom: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;

    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.nauti-faq-container details:hover {
    transform: translateY(-6px) scale(1.012);
    box-shadow: 0 14px 30px rgba(0,85,150,0.18);
    border-left-color: #003f70;
}

.nauti-faq-container details[open] {
    border-left-color: #005596;
    box-shadow: 0 10px 24px rgba(0,85,150,0.14);
}

.nauti-faq-container summary {
    position: relative;
    padding: 18px 52px 18px 22px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.5;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.nauti-faq-container summary::-webkit-details-marker {
    display: none;
}

.nauti-faq-container summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    width: 28px;
    height: 28px;
    line-height: 25px;
    text-align: center;

    color: #005596;
    border: 2px solid #005596;
    border-radius: 50%;

    font-size: 1.25rem;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.nauti-faq-container details[open] summary::after {
    content: '−';
    background: #005596;
    color: #ffffff;
}

.nauti-faq-container summary:hover {
    background: #f5f8fb;
}

.nauti-faq-tag {
    color: #11aa77;
    font-weight: 500;
    margin-right: 6px;
}

.nauti-faq-content {
    padding: 4px 24px 22px 24px;
    line-height: 1.7;
    color: #404b55;
}

.nauti-faq-content p:first-child {
    margin-top: 0;
}

.nauti-faq-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {
    .nauti-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .nauti-card-grid,
    .nauti-course-grid,
    .nauti-compare-grid,
    .nauti-facts-grid {
        grid-template-columns: 1fr;
    }

    .nauti-card,
    .nauti-course-card,
    .nauti-compare-card,
    .nauti-fact {
        padding: 20px;
    }

    .nauti-btn-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .nauti-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .nauti-course-card > a.nauti-course-btn {
        width: 100% !important;
        box-sizing: border-box;
        text-align: center;
    }

    .nauti-faq-container summary {
        padding: 17px 50px 17px 18px;
    }

    .nauti-faq-content {
        padding: 3px 18px 20px 18px;
    }

    /* Auf Touchgeräten keine unnötigen Hoverbewegungen */
    .nauti-faq-container details:hover {
        transform: none;
    }
}



.nautiapp-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.nautiapp-review-box {
    border: 2px solid #edf2f7;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.nautiapp-review-header {
    background: #bbddf6;
    padding: 12px 20px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #7f8c8d;
}

.nautiapp-review-name {
    color: #2c3e50;
}

.nautiapp-review-date {
    font-weight: normal;
}

.nautiapp-review-source {
    color: #3498db;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.nautiapp-review-body {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
    white-space: pre-line;
}

/* Weitere Rezensionen zunächst einklappen */
.nautiapp-hidden {
    display: none !important;
}

.btn-nautiapp-more {
    display: none;
    background-color: #3498db;
    color: #ffffff;
    padding: 11px 22px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.2s;
    width: 100%;
    max-width: 300px;
}

.btn-nautiapp-more:hover {
    background-color: #2980b9;
}

@media (max-width: 700px) {
    .nauti-table {
        font-size: 0.92rem;
    }

    .nauti-table th,
    .nauti-table td {
        padding: 10px 8px;
    }

    .nautiapp-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


.nautiapp-table-container {
    width: 100%;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    overflow: visible !important;
}

.nautiapp-kurs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: visible !important;
}

.nautiapp-kurs-table th {
    background-color: #005596;
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 0.95em;
}

.nautiapp-kurs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaecf4;
    vertical-align: middle;
    color: #333;
}

.nautiapp-kurs-table tr:last-child td {
    border-bottom: none;
}

.nautiapp-kurs-table tr:hover {
    background-color: #f8f9fc;
}


/* =========================================================
   TOOLTIP
   ========================================================= */

.nautiapp-tooltip-wrapper {
    position: relative;
    display: inline-block;
    color: #005596;
    text-decoration: underline dotted;
    cursor: help;
    font-weight: bold;
}

.nautiapp-tooltip-content {
    visibility: hidden;
    width: 290px;
    background-color: #005596;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 12px;
    position: absolute;
    z-index: 9999;
    bottom: 135%;
    left: 0;
    transform: none;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: 0.85em;
    font-weight: normal;
    line-height: 1.4;
    white-space: normal;
}

.nautiapp-tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20px;
    border-width: 6px;
    border-style: solid;
    border-color: #005596 transparent transparent transparent;
}

.nautiapp-tooltip-wrapper:hover .nautiapp-tooltip-content {
    visibility: visible;
    opacity: 1;
}


/* =========================================================
   ZEITANZEIGE
   ========================================================= */

.nautiapp-time-display {
    display: block;
    font-size: 0.85em;
    color: #6e707e;
    margin-top: 2px;
}


/* =========================================================
   BUCHEN-BUTTON
   ========================================================= */

.nautiapp-btn-book {
    display: inline-block;
    background-color: #1cc88a;
    color: white !important;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    transition: background 0.2s;
}

.nautiapp-btn-book:hover {
    background-color: #17a673;
}


/* =========================================================
   MOBILE DARSTELLUNG
   ========================================================= */

@media screen and (max-width: 768px) {

    .nautiapp-kurs-table,
    .nautiapp-kurs-table tbody,
    .nautiapp-kurs-table tr,
    .nautiapp-kurs-table td {
        display: block;
        width: 100%;
        overflow: visible !important;
    }

    .nautiapp-kurs-table th {
        display: none;
    }

    .nautiapp-kurs-table tr {
        margin-bottom: 15px;
        border: 1px solid #e3e6f0;
        border-radius: 6px;
        background: #fff;
        padding: 10px;
    }

    .nautiapp-kurs-table td {
        text-align: right;
        padding: 8px 10px;
        border-bottom: 1px dashed #eaecf4;
        box-sizing: border-box;
    }

    .nautiapp-kurs-table td:last-child {
        border-bottom: none;
    }

    .nautiapp-kurs-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        color: #005596;
    }
}






#gdpr-cookie-notice {
    background-color: #dee6ed !important;
    border-top: 4px solid #005596 !important;
    color: #333 !important;
}

#gdpr-cookie-notice .button {
    background-color: #005596 !important;
    color: white !important;
    border-radius: 4px !important;
    padding: 10px 25px !important;
    font-weight: bold;
}

#gdpr-cookie-notice a {
    color: #005596 !important;
    text-decoration: underline;
}