@import "body_base.css";
@import "colors.css";
@import "typography.css";
@import "buttons.css";
@import "navbar.css";
@import "footer.css";
@import "tooltip.css";


/* Container mit Glassmorphism */
.app-container {
    display: contents;
    align-items: center;      /* zentriert alle direkten Kinder horizontal */
    /*background: rgba(37, 41, 56, 0.8);*/
    /* backdrop-filter: blur(20px); */
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(74, 158, 255, 0.2);
    padding: 30px;
    border-radius: 16px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(74, 158, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    /* nur ein Schatten */
    text-align: center;
    width: 100%;
    position: relative;
}

/* Alle Texte im App-Container */
.app-container h1,
.app-container h2,
.app-container h3,
.app-container h4 {
}

.app-container p {
    color: #cbd5e1 !important;
}

/* Kleinere Texte */
.app-container small,
.app-container .subtitle {
    color: #94a3b8 !important;
}

/* Hover-Effekt für den Container */
.app-container:hover {
    border-color: rgba(74, 158, 255, 0.4) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(74, 158, 255, 0.2) !important;
}

/* Headings mit Glow */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    margin-top: 3%;
    margin-bottom: 2%;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
    text-align: center;
}



.hidden {
    display: none !important;
}

/* Headings mit Glow */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
    margin-bottom: 15px;
    font-weight: 500;
    /* Medium */
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

h1 {
    font-weight: 500;
    font-size: 2.5rem;
}

h2 {
    font-weight: 400;
    font-size: 2rem;
}

h3 {
    font-weight: 400;
    font-size: 1.5rem;
}

/* Links mit Glow-Akzent */
a {
    color: var(--warm-accent-medium);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--warm-accent-light);
    text-shadow: 0 0 8px rgba(74, 158, 255, 0.5);
    text-decoration: underline;
}

p {
    margin-bottom: 15px;
}

details.details-config {
    margin-bottom: 25px;
    color:var(--text-primary);
}


.downloadbutton {
    width: 100%;
    padding: 10px;
}

section {
    margin-bottom: 40px;
}


/* Forms */
/* Inputs mit dunklem Theme */
input,
textarea,
select,
select.appselect {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: var(--text-primary);
    padding: 12px;
    margin: 10px 0 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus,
select.appselect:focus {
    outline: none;
    border-color: var(--blue-glow);
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
}

.flex {
    display: flex
}

.justify-center {
    justify-content: center;
}

.mainapp {
  margin: 20px auto;              /* Oben 20px, zentriert mit Auto-Margin */
  max-width: 900px;               /* maximale Breite */
  width: calc(100% - 2 * 2%);     /* volle Breite minus je 3% Seitenabstand */
  gap: 24px;                      /* gleichmäßiger Abstand zwischen Items */
  box-sizing: border-box;         /* Padding in die Breite einrechnen */
  color: var(--text-primary);
}


.mainapp p,
.mainapp li,
.mainapp td,
.mainapp span {
    color: var(--text-primary, #f8f9fa);
}

.mainapp h1 {
    text-align: center;
}

.logo-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 20px;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.5);
    letter-spacing: 1px;
    margin-left: 20px !important;
}

.logo-container {
    display: flex;
    justify-content: center;
    /* Center the logo */
    flex: 1;
    /* Take available space */
}

.logo {
    height: 50px;
    /* Adjust logo size */
    width: auto;
    /* Keep aspect ratio */
}

.nav-links-right {
    display: flex;
}

.nav-links-right a,
.nav-links-right span {
    color: var(--text-primary) !important;
    /* Helle Schrift */
    text-decoration: none;
    padding: 8px 16px;
    margin-left: 20px;
    transition: all 0.3s ease;
}


.nav-links-right a:hover {
    /* color: var(--blue-glow) !important; */
    color: var(--warm-accent-light) !important;
    background-color: rgba(74, 158, 255, 0.1);
    border-radius: 4px;
    text-shadow: 0 0 8px rgba(74, 158, 255, 0.5);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Nav Tools Links */
.nav-tools a {
    color: var(--text-primary) !important;
    margin-left: 20px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
}

.nav-tools a:hover {
    color: var(--warm-accent-light) !important;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.6);
    text-decoration: underline;
}

.burger {
    /* display: none; */
    font-size: 1.8em;
    background: none;
    color: var(--text-primary);
    border: none;
    cursor: pointer;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 30px;
        background-color: rgba(10, 11, 15, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px;
        border-radius: 8px;
        z-index: 1001;
    }

    .nav-links.show {
        display: flex;
    }
}


.vertical-center {
    /* Add these lines: */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center */
    height: 100%;
    /* Takes full height of its parent */
}

.config-table {
    width: 100%;
}



.video-container {
    padding-bottom: 40px;
}

table.summary-table {
    width: 100%;
    /* border: 2px solid black; */
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 60px;
}

.border-bottom {
    border-bottom: 1px solid black;
    padding: 10px 5px;
}

.summary-table th {
    border-bottom: 1px solid black;
}



.low-margin-heading {
    margin: 3px 3px 3px 3px;
}

.green_notification {
    background-color: #4caf50;
}

div.yellow_notification, span.yellow_notification{
    background-color: #fff699;
    color: var(--bg-primary) !important;
}

.red_notification {
    background-color: #ee6666;
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

table.result-table td {
    min-width: 220px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

table.result-table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 30px;
}

table.download-table td {
    min-width: 220px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

table.download-table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 30px;
}

span.input-ext {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    padding: 0;
}

span.coins-in-input {
    left: -65px;
}

span.dollar-in-input {
    left: -35px;
}

img.result-image {

    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

/* THIS IS FOR TRADINGVIEW
.result-chart {
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/

/* THIS IS FOR PLOTLY */
.result-chart {
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block; /* wichtig: kein flexbox! */
    width: 800px;
    height: 600px;
    position: relative;
}

.js-plotly-plot .modebar-btn[data-title="Reset axes"] {
    background-color: #b09958 !important;
    color: white !important;
    border-radius: 5px;
}


#exit-result-chart:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
}


#result-div {
    position: relative;
}

img.shadow {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}




/* Slider mit Blau-Akzent */
.slider {
    -webkit-appearance: none;
    /* Override default CSS styles */
    appearance: none;
    height: 5px;
    /* Specified height */
    /* background: #c4b483; /* Grey background */
    background: rgba(74, 158, 255, 0.3);

    outline: none;
    /* Remove outline */
    opacity: 0.7;
    /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s;
    /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    flex-grow: 1;
    border-radius: 4px;
}

.slider:hover {
    opacity: 1;
    /* Fully shown on mouse-over */
}

/*.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
/*appearance: none;
/*width: 15px; /* Set a specific slider handle width */
/*height: 15px; /* Slider handle height */
/*background: white;
/*cursor: pointer; /* Cursor on hover */
/*}*/

.slider::-webkit-slider-thumb {
    background: linear-gradient(135deg, var(--blue-glow), var(--blue-accent));
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Adds space between the elements */
}

.slider-label {
    margin-right: 10px;

}

.digit-text-input {
    width: 50px;
    height: 30px;
}

.right-padded-input {
    margin-right: 55px;
}

.bordered-table {
    border: 2px solid black;
}

.columns-border td,
.columns-border th {
    border-left: 1px solid #000;

}

.columns-border td:first-child,
.columns-border th:first-child {
    border-left: none;
}

.centered {
    text-align: center;
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 29px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.switchslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    width: 50px;
}

.switchslider:before {
    position: absolute;
    content: "";
    height: 21px;
    width: 21px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.switchslider {
    background-color: #b09958;
}

input:focus+.switchslider {
    box-shadow: 0 0 1px #b09958;
}

input:checked+.switchslider:before {
    -ms-transform: translateX(21px);
    transform: translateX(21px);
}

/* Rounded sliders */
.switchslider.round {
    border-radius: 34px;
}

.switchslider.round:before {
    border-radius: 50%;
}

img.copy_clipboard_image {
    width: 18px;
    height: 18px;
    position: relative;
    top: 2px;
    left: -3px;
    cursor: pointer;
}

.disabled {
    color: #999999;
}

.slider.disabled {
    background: #dddddd;
}



.social-icons {
    display: flex;
    /* Flexbox for social media icons */
    gap: 10px;
    /* Space between social media links */
}

.detail-settings {
    margin: 20px;
}

div.headingtooltip {
    font-size: 20px;
    background-color: var(--bg-primary);
}

div.ptooltip {
    margin-left: 10px;
}

select.appselect {
    width: 50%;
    /* background: linear-gradient(135deg, var(--silver-primary) 0%, var(--silver-light) 100%); */
    /* background-color: var(--silver-dark); */
    text-align: center;
    z-index: 1;
    /* color: black !important;*/
    /* text-emphasis-color: black;
    text-decoration-color: black;  */
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    /* You can adjust the width */
}

/* General reset for select element */
select {
    /* appearance: none;
    -webkit-appearance: none; /* For Safari */
    /* -moz-appearance: none; /* For Firefox */
    background-color: #f4f4f9;
    border: 2px solid #c5c5d1;
    border-radius: 6px;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    /* position: relative; */
}

/* Hover and focus states */
select:hover,
select:focus {
    border-color: #b09958;
    box-shadow: 0 0 8px rgba(108, 99, 255, 0.3);
}

/* Custom arrow (dropdown icon) */
select::after {
    content: '▼';
    /* Custom dropdown icon */
    position: absolute;
    right: 15px;
    top: 45%;
    transform: translateY(-55%);
    font-size: 12px;
    pointer-events: none;
    color: #b09958;
}

/* Remove default arrow in Firefox */
select::-ms-expand {
    display: none;
}

/* Style options inside the select */
select option {
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
}

/* Optional: Disabled select styling */
select:disabled {
    background-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

/* Custom dropdown arrow */
.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-70%);
    font-size: 15px;
    pointer-events: none;
    color: #b09958;
}

select option {
    color: black;
    /* oder z.B. var(--text-primary), wenn du es anpassen willst */
    /* background-color: white; kannst du hier auch steuern */
}

.configinput {
    width: 100%;
}

.config-heading {
    margin-top: 20px;
}

.nochange {
    all: unset;
    background-color: var(--blue-dark);
    /* oder rgba(255,255,255,0.9) für silbernen Schimmer */
    color: black;
    /* dunkle Schrift auf hellem Silber */
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

.landing-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 50px;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
}

.image-card {
    flex: 1 1 calc(33.33% - 40px);
    max-width: 300px;
    text-align: center;
    perspective: 1000px;
}

.image-card .flip-box {
    position: relative;
    width: 100%;
    height: auto;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    /* Ensures 3D flipping */
}

.image-card:hover .flip-box {
    transform: rotateY(180deg);
    /* Flips the card on hover */
}

.image-card img,
.image-card .flip-box .back {
    width: 100%;
    /* height: auto; */
    height: 170px;
    backface-visibility: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-card .flip-box .back {
    position: absolute;
    top: 0;
    left: 0;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    border-radius: 8px;
}

.itemTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.itemTable th,
.itemTable td {
    align-items: flex-start;
    padding: 10px;
    padding-right: 0 !important;
    margin-right: 0 !important;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.itemTable th {
    background-color: #f2f2f2;
}

.remove-btn {
    color: #ff0000;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.remove-btn:hover {
    color: #cc0000;
}

.itemTable-row {
    transition: background-color 0.3s;
}
.itemTable-row:hover {
    background-color: #f9f9f9;
}

.itemTable-cell:nth-child(1) {
    width: 85%;
}

.itemTable-cell:nth-child(2) {
    width: 10%;
    text-align: center;
}

.itemTable-cell:nth-child(3) {
    width: 5%;
}

.image-card h3 {
    margin: 10px 0 0;
    font-size: 1.2rem;
    color: #333;
}

@media (max-width: 768px) {
    .image-card {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .image-card {
        flex: 1 1 100%;
    }
}

.double-slider-container {
    position: relative;
    width: 80%;
    height: 50px;
}

.double-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 8px;
    background-color: #ddd;
    border-radius: 4px;
}

.double-logslider-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #BCA669;
    border-radius: 50%;
    cursor: pointer;
    touch-action: none;
}

.double-logslider-label {
    margin-top: 10px;
    text-align: center;
    position: relative;
    top: -20px;
}

/* Reduce the spacing between the checkboxes */
.checkbox-group div {
    margin: 2px 0;
    /* Small margin for tighter spacing */
}

.checkbox-group input {
    margin: 0;
    /* Remove any extra margin around the checkbox */
    margin-right: 8px;
}




.password-wrapper {
    position: relative;
    display: inline-block;
}

.password-wrapper input {
    /* padding-right: 2.5rem; /* space for icon */
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    color: #666;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

button.counter-control {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.2s;
    background-color: var(--blue-dark);
}

button.counter-control:hover {
    background-color: var(--blue-dark-hover);
}

.strategy-count,
.counter-control {
    display: inline-block;
    vertical-align: middle;
}

.strategy-counter {
    display: flex;
    align-items: center;
    gap: 6px;
}

.edit-icon {
    font-size: 16px;
    color: #888;
}

.edit-icon:hover {
    color: #333
}

.rename-input {
    font-size: 14px;
    padding: 2px 6px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    background-color: #f9f9f9;
}

.icon-inline {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    vertical-align: middle;
    margin-left: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.icon-inline:hover {
    opacity: 0.8;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    /* background: white; */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    background: rgb(0, 0, 0);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.sort-icon {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    line-height: 10px;
    vertical-align: middle;
    text-align: center;
}

.sort-arrow {
    display: block;
    /* ← stacked */
    font-size: 9px;
    line-height: 10px;
    height: 10px;
    color: #bbb;
    /* ← default: hellgrau */
    transition: color 0.2s;
}

.sort-arrow.active {
    color: #333;
    /* ← aktiv: dunkelgrau */
}

div.toggle-button.active{
    color: var(--bg-primary) !important;
}

.hero-section-light .container {
  background: transparent;
  max-width: 1200px !important;
  width: 100vw !important;;
  left: 50% !important;;                  /* verschiebt das Element zur Mitte des Viewports */
  transform: translateX(-50%) !important;;/* zentriert es exakt */
  padding: 0 20px !important;;            /* optional: innenliegender Seitenabstand */
  color: var(--text-primary);
  text-align: center;
  position: relative; /* damit das Heading absolut positioniert werden kann */
  box-sizing: border-box;     /* damit Padding nicht überläuft */
}

.hero-title-light {
    padding-top: 3%;
    padding-bottom: 3%;
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 25%, #999999 50%, #cccccc 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-light {
    font-size: 1.2rem;
    margin-top: 1%;
    margin-bottom: 1%;
    color: #444;
    line-height: 1.6;
}


.primary-gradient-outline {
    /* Transparenter Hintergrund */
    background: transparent;
    /* Dünner, abgerundeter Rahmen mit Gradient */
    border: 2px solid;
    border-radius: 32px;
    /* Für die "Pillenform", je nach Höhe ggf. anpassen */
    padding: 12px 32px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Gradient-Rahmen */
    border-image: linear-gradient(90deg, #a259ff 0%, #3f5efb 100%);
    border-image-slice: 1;
    /* Für einen subtilen Glow-Effekt */
    box-shadow: 0 0 8px 0 rgba(162, 89, 255, 0.25), 0 0 0 1px rgba(63, 94, 251, 0.12);
    transition: box-shadow 0.2s, border-image 0.2s;
}

.primary-gradient-outline:hover,
.primary-gradient-outline:focus {
    /* Glow verstärken bei Hover */
    box-shadow: 0 0 16px 2px rgba(162, 89, 255, 0.45), 0 0 0 2px rgba(63, 94, 251, 0.28);
    /* Gradient verschieben oder verstärken für mehr Dynamik */
    border-image: linear-gradient(90deg, #3f5efb 0%, #a259ff 100%);
    border-image-slice: 1;
    outline: none;
}

/* Paragraphs und allgemeiner Text */
p,
span,
li,
a,
small {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    /* regular */
}


@media (max-width: 768px) {
    .hero-title-light {
        font-size: 2rem;
    }

    .hero-subtitle-light {
        font-size: 1rem;
    }

    .mainapp {
        width: calc(100% - 2 * 1%);
        padding: 0 1%;
    }
    /* .button-primary {
        width: 100%;
    } */
}



.tool-description {
    font-size: 0.95rem;
    color: #555;
    /*margin-top: 8px;*/
}


details summary {
    cursor: pointer;
    font-weight: bold;
    padding: 10px 0;
    list-style: none;
}

details[open] summary::after {
    content: "–";
    float: right;
}

details:not([open]) summary::after {
    content: "+";
    float: right;
}

.testimonial-screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-screenshot-grid img {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.coin-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coin-results-list li {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.coin-results-list li:hover {
    background-color: #f0f0f0;
    color: var(--bg-primary);
}

.coin-results-list img {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    border-radius: 4px;
    flex-shrink: 0;
}


/* Grid: gibt den Karten Platz */
.strategy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    align-items: stretch;
    /* sorgt dafür, dass alle Karten gleich hochgezogen werden */
}


.strategy-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    min-height: 600px;
    height: auto;
    padding: 24px;
    background-color: rgba(18, 20, 30, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    flex-grow: 1;
    position: relative;
}

/* Hover-Effekt */
.strategy-card:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(74, 158, 255, 0.1);
}

/* Ausgewählt */
.strategy-card.selected {
    background-color: rgba(168, 143, 124, 0.1);
    border: 2px solid #a88f7c;
    box-shadow: 0 0 10px rgba(168, 143, 124, 0.3);
}

.strategy-card.selected button {
    background: linear-gradient(135deg, var(--warm-accent-light), var(--warm-accent-dark));
    color: #000;
    font-weight: bold;
    border: none;
}

/* Checkmark entfernt */
.strategy-card .checkmark {
    display: none;
}

/* Header */
.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Bedingungen-Text */
.strategy-card .strategy-conditions {
    max-height: 100px;
    /* Zeigt nur die ersten ~3-4 Zeilen */
    overflow: hidden;
    position: relative;
}

.strategy-card.expanded .strategy-conditions {
    max-height: 500px;
    overflow: scroll;
    /* oder: none */
}

.strategy-card .show-more {
    cursor: pointer;
    color: var(--blue-glow);
    font-size: 0.85rem;
    margin-top: 8px;
    text-align: center;
}

/* Button unten */
.strategy-card button {
    margin-top: auto;
    align-self: center;
    width: 100%;
    padding: 12px 20px;
}

.strategy-conditions.collapsed {
    max-height: 100px;
    overflow: hidden;
}

.strategy-card.expanded .strategy-conditions {
    max-height: none;
}

.show-more {
    color: var(--blue-glow);
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 8px;
    text-align: right;
}

.badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
}


.highlighted-tier {
    background-color: #fdf8ef;
    border: 2px solid #b09958;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.badge-preset {
    /* background-color: #4caf50;*/
    background-color: var(--warm-accent-medium);
    color: black;
}

.badge-custom {
    /* background-color: #2196f3; */
    background-color: #c0b588;
    color: white;
}

.strategy-conditions {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0 20px 0;
    color: #555;
}

/* Tabs */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

div.toggle-container.visible-tabs {
    max-width: 1200px;
}


.indicator-tab.hidden {
    display: none;
}

.indicator-timeline {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    margin-top: 10px;
}

.indicator-node {
    min-width: 180px;
    background-color: rgba(18, 20, 30, 0.95);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    backdrop-filter: blur(15px);
}

.indicator-node:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.indicator-triggered {
    border-color: #4caf50;
    background-color: rgba(18, 20, 30, 0.95);
}

.indicator-soon {
    border-color: var(--satin-bronze);
    background-color: rgba(18, 20, 30, 0.95);
}

.indicator-open {
    border-color: #ccc;
    background-color: rgba(18, 20, 30, 0.95);
}

.status-icon {
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
}

.indicator-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #f8fafc;
    text-align: center;
}


.indicator-value {
    font-size: 0.9rem;
    margin-top: 2px;
    color: #555;
}

.indicator-status-label {
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 4px;
}

.indicator-points {
    font-size: 0.85rem;
    color: #777;
    margin-top: 6px;
}


/* Coin-specific Table View */
.indicator-view-block {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.indicator-summary {
    flex: 0 0 240px;
    background-color: rgba(18, 20, 30, 0.95);
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    color: #f8fafc;
    /* Textfarbe einheitlich */
}


.indicator-summary h4 {
    margin-top: 0;
    font-size: 1.1rem;
    color: black;
}

.indicator-summary .info {
    font-size: 0.9rem;
    color: #444;
    margin-top: 6px;
}

.coin-list-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.coin-list-table th,
.coin-list-table td {
    padding: 8px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.coin-list-table img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 4px;
}


#progress-bar-overview {
    background: linear-gradient(to right, #2b3540, #06b6d4) !important;
    border-radius: 5px;
    height: 8px;
    transition: width 0.4s ease;
}

.clickable {
    cursor: pointer;
}




#br-cc-tabs,
.visible-tabs {
    margin-top: 20px;
    margin-bottom: 20px;
    /* padding: 10px; */
    background: transparent;
    /* entfernt den abgesetzten Hintergrund */
    border: none;
    /* optional: entfernt äußeren Rand */
    box-shadow: none;
    /* optional: entfernt Schatten */
    display: flex;
    justify-content: space-between;
    /* verteilt die Buttons gleichmäßig */
    width: 100%;
    /* nimmt volle Breite des Containers */
    gap: 10px;
    /* optional: Abstand zwischen den Buttons */
}

.switch-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Größere Indikator-Karten */
.strategy-card {
    min-width: 340px;
    max-width: 420px;
    min-height: 260px;
    overflow-y: auto;
    max-height: 500px;
    padding: 28px 28px 22px 28px;
    font-size: 1.07rem;
}

/* Chart-Container für Vorschau und Modal */
.chart-container {
    width: 100%;
    min-height: 110px;
    height: 130px;
    border-radius: 8px;
    background: #faf9f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-bottom: 12px;
}

@media (max-width: 700px) {
    .strategy-card {
        min-width: 95vw;
        max-width: 100vw;
        height: auto;
    }

    .chart-container {
        height: 120px;
        min-height: 70px;
    }
}

/* Fullscreen-Button Style */
.fullscreen-btn {
    background: whitesmoke;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    font-size: 1.1em;
    transition: background 0.15s;
}

.fullscreen-btn:hover {
    background: #f1efe7;
}

.app-container {
    background-color: white;
    /* padding: 30px; */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}


.app-container.fullscreen .visible-tabs.toggle-container {
    position: static !important;
    box-shadow: none !important;
    /* falls du einen Schatten hast */
    top: auto !important;

}
/* Main-App Fullscreen */
.app-container.fullscreen {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: #f8f7f2 !important;
    z-index: 10010;
    overflow-y: auto;
    box-shadow: none !important;
    padding: 30px 32px 32px 32px !important;
    padding-top: 0 !important;
    /* statt 30px */
    border-radius: 0 !important;

}

/* Grid Fullscreen */
.app-container.fullscreen .strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px 24px;
}

/* Fullscreen-Schließen-Button */
.fullscreen-exit-btn {
    position: fixed;
    top: 22px;
    right: 36px;
    z-index: 11000;
    background: #e9e6d6;
    border: none;
    border-radius: 7px;
    padding: 8px 16px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: background 0.18s;
}

.fullscreen-exit-btn:hover {
    background: #f1efe7;
}

.app-container.fullscreen #fullscreen-btn {
    display: none !important;
}

#unmapped-section .remove-btn {
    background: none !important;
    color: #d32d2d; /* bleibt rot */
    /* box-shadow: none !important;
    padding: 0 !important;
    border: none !important; */
}

.button-row {
    display: flex;
    gap: 12px;
    justify-content: flex-end; /* oder flex-start/center nach Geschmack */
    margin-top: 14px;
}

.button-row button,
.button-row .button-primary {
    width: auto;
    min-width: 0;
    flex: 1 0 0;
    white-space: nowrap;
}
.button-row a {
    display: inline-block;
}

.button-row button,
.button-row .button-primary {
    flex: 1 1 0;
}


.custom-number-input {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.custom-number-input input.number-input {
    width: 75px;
    text-align: right;
    position: relative;
    top: 5px;
    padding: 4px 6px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-number-input .number-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.custom-number-input .number-btn:hover {
    background: #e0e0e0;
}

.counter-control {
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    padding: 2px 6px;
    font-size: 14px;
    border-radius: 4px;
    background: #eee;
    color: #444;
    border: 1px solid #ccc;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

.counter-control:hover {
    background: #ddd;
    color: #222;
}


/* Honeypot: visually hidden, still in DOM */
input[name="website_bot_field"] {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Optional defense: make autofill unlikely */
input[name="website_bot_field"]::-webkit-contacts-auto-fill-button { visibility: hidden; display: none; }

a.button-primary.disabled {
    background: #ccc;
    border-color: #aaa;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

.pricing-table {
    table-layout: fixed;
    width: 100%;
}

.pricing-table th,
.pricing-table td {
    word-wrap: break-word;
    vertical-align: top;
}




/* Überschreibt die bestehenden Styles mit !important */
.section-container-a {
    max-width: 900px;
    margin: 5% auto !important;
    align-items: center;
    /* margin: 5% 5%; */
    /* # background-color: rgba(26, 29, 41, 0.9) !important; */
    /* backdrop-filter: blur(15px) !important; */
    background: rgba(11, 3, 3, 0.1);
    /* leicht transparent */
    backdrop-filter: blur(5px) !important;
    /* weicher Blur */
    -webkit-backdrop-filter: blur(5px) !important;
    /* Safari Suppor

    margin: 40px 0 !important;
    /* Mindestabstände, auch angepasst an mobile */
    /* statt z.B. 40px */
    /* border: 1px solid rgba(74, 158, 255, 0.1) !important; */
    border-radius: 12px;


    z-index: 1;
    position: relative;
    isolation: isolate;


    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 3% 2%;      /* Rundum 20px Innenabstand */
    box-sizing: border-box; /* inkl. Padding in die max-width rechnen */
}


/* Text in der section-container-a Box */
.section-container-a h1,
.section-container-a h2,
.section-container-a h3,
.section-container-a h4 {
    /* margin-top: 20px; */
    /* Abstand nach oben */
    margin-top: 0 !important;
    color: #f8fafc !important;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3) !important;
}

.section-container-a p {
    color: #cbd5e1 !important;
}

/* Alle Textelemente in der Box */

.section-container-a * {
    color: #cbd5e1;
}

div.info {
    color: #cbd5e1 !important;
}


.section-container-a strong {
    color: #f8fafc !important;
}


/* Pseudo-Element für den Rahmen */
.section-container-a::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;             /* Rahmendicke */
    background: linear-gradient(
            45deg,
            rgba(196, 100, 255, 0.3) 0%,
            rgba(54, 90, 200, 0.3) 50%,
            rgba(44, 168, 199, 0.3) 100%
    );
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Inhalt über dem Rahmen */

/* TOR20250716 commented this out since it lead to the tooltip not working!
.section-container-a > * {
  position: relative;
  z-index: 2;
}

 */



/* Content-Bereich nimmt alles außer Footer ein */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--text-primary);
}

.content-section {
    margin: 0;
    padding: 20px;
    /* Nur innen, nicht außen */
    background: transparent;
    /* Falls ein Hintergrund gesetzt ist */
    border: none;
    /* Falls ein Border gesetzt ist */
    color: var(--text-primary);
}

.content-section p{
    margin: 0;
    padding: 20px;
    /* Nur innen, nicht außen */
    background: transparent;
    /* Falls ein Hintergrund gesetzt ist */
    border: none;
    /* Falls ein Border gesetzt ist */
    color: var(--text-primary) !important;
}

.strategy-card h3 {
    margin-top: 0px !important;
    /* statt 20px */
    margin-bottom: 12px !important;
    /* statt 15px, optional enger */
    font-size: 1.2rem !important;
    /* optional: etwas kleiner, wenn es zu wuchtig ist */
}

.strategy-card h3,
.strategy-card h2,
.strategy-card h4 {
    margin-top: 0;
}

form {
    margin: 0;
    padding: 0;
}

fieldset {
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    /* Dein Theme-Border */
    background: transparent;
}

legend {
    margin: 0;
    padding: 0 10px;
}

table {
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    width: 100%;
}

td {
    margin: 0;
    padding: 2px;
    border: none;
}

tr {
    margin: 0;
    padding: 1%;
    padding-top: 0px;
    border: none;
}

.copy_clipboard_image {
    margin-left: 0.5%;
    filter: invert(1);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary) !important;
    padding: 1%;
    border-top: 1px solid var(--warm-accent-light);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.cookie-consent-banner p {
    color: var(--text-primary) !important;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-banner__message {
    flex: 1;
}

.cookie-consent-banner__message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-consent-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    display: none;
}

.text-muted {
    color: var(--silver-dark)
}

.link-box {
    z-index: 5 !important;
    /* margin-left: 5px; */
    /* margin: 1%; */
    /* float: right; */
    margin-right: 2%;
    margin-top: 5%;
    position: relative;
    float:right;
    background-color: var(--blue-dark);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 1rem;
    /* transition: background 0.2s ease, color 0.2s ease; */
}

.link-box a {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 500;
}

.link-box a:hover {
    color: var(--warm-accent-light);
    text-decoration: underline;
}

.alert {
    /* background-color: #000; */
}

.alert-success {}

/* In styles.css */

/* 1. Grid-Container für Cards (USPs) */
.section-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 1%
}

/* 2. Grid-Container für Workflow */
.workflow-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin: 1%
}

/* 3. Card-Grundstil (USPs und Workflow) */
.section-card,
.workflow-step {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

/* 4. Icon-Abstand */
.section-card .icon,
.workflow-step .icon {
    font-size: 2em;
    margin-bottom: 12px;
}

/* 5. Überschrift in der Card */
.section-card h3,
.workflow-step h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #f8fafc;
}

/* 6. Fließtext in der Card */
.section-card p,
.workflow-step p {
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

/* 7. CTA-Bereich unter den Sections */
.cta-container {
    text-align: center;
    margin-top: 16px;
}
.cta-note {
    font-size: 0.96rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* 1. Basis-Container zentrieren und Abstände definieren */
.trust-stats {
    max-width: 900px;
    margin: 1%;            /* unten 30px, zentriert */
    padding-top: 15px;              /* Abstand nach oben */
}

/* 2. Flex-Grid für die vier Claims */
.trust-stats .stats-list {
    display: flex;
    justify-content: space-between; /* gleichmäßige Verteilung */
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* 3. Einzelner Claim */
.trust-stats .stats-item {
    flex: 1 1 140px;                /* wächst, schrumpft, mind. 140px */
    text-align: center;
}

/* 4. Icon-Styling */
.trust-stats .stats-item .icon {
    font-size: 1.7em;
    display: block;
    margin-bottom: 8px;
}

/* 5. Claim-Text */
.trust-stats .stats-item .label {
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.2;
}

/* 6. Responsive Adjustments */
@media (max-width: 600px) {
    .trust-stats .stats-item {
        flex: 1 1 100%;               /* auf kleinen Bildschirmen full-width */
    }
}

/* 1) Universelle Box-Hülle  */
.box-wrapper {
    background: rgba(15, 23, 42, 0.35);      /* dezente Glasfläche */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 158, 255, 0.18);
    border-radius: 14px;
    padding: 26px;
    margin: 40px auto;                       /* oben/unten 40 px, zentriert */
    max-width: 980px;                        /* einheitliche Breite */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* 2) Optionaler Titel-mainAbstand in jeder Box  */
.box-wrapper > h2:first-child,
.box-wrapper > h1:first-child {
    margin-top: 0;
}

/* Bullet-Points in allen Karten/Boxen ausblenden */
.section-cards,
.section-cards li,
.workflow-cards,
.workflow-cards li,
.box-wrapper ul,
.box-wrapper li {
    list-style: none;   /* entfernt • */
    margin: 0;          /* kein zusätzlicher Einzug */
    padding: 0;         /* kein linker Innenabstand */
}



.itemTable-cell{
    background-color: var(--blue-dark) !important;
    color: var(--silver-2) !important;
}



.appselect option {
    background-color: var(--blue-dark);
    color: #fff;
}




.interval-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.button-secondary.interval-btn.active {
    /*
    background: var(--blue-dark-hover);
    position: relative;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);

     */
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.pricing-table {
    max-width: 1600px !important;
    border: 0.5px solid #234 !important;
    border-radius: 20px;
    border-collapse: separate;  /* wichtig für runde Ecken + Spaltengrenzen */
    border-spacing: 0;          /* verhindert doppelte Ränder */
    width: 100%;
    font-family: Arial, sans-serif;
    overflow: visible;
}

.pricing-table th,
.pricing-table td {
    border-left: 0.5px solid #234 !important;
    padding: 12px 20px;
    text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    border-left: none; /* linker Rand bei erster Spalte entfällt */
}

.pricing-table th {
    font-weight: bold;
    border-bottom: none !important;
}

.pricing-table tr:not(:last-child) td{
    border-bottom: none !important; /* z. B. Linie nur zwischen den Spalten */
}

.pricing-table tr(:last-child) td{
border-bottom: 0.5px solid #234 !important; /* z. B. Linie nur zwischen den Spalten */
}

.pricing-table tr:hover td,
.pricing-table tr:hover th {
    background-color: var(--blue-dark) !important;
}

.pricing-table td {
    transition: background-color 0.4s ease !important;
}


div.ribbon {
    position: relative;
    top: -12px;
    right: -130px;
    width: 180px;
    background-color: #e63946;  /* kräftiges Rot */
    color: white;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 4px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}


.pricing-tier {
    position: relative;
    overflow: visible; /* wichtig, damit das Badge rausstehen darf */
}

/* Ribbon absolut platzieren */
.ribbon {
    position: absolute;
    top: 12px;
    right: -40px;
    width: 140px;
    background-color: #e63946;
    color: white;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}

button.button-primary.pricing-button{
    padding: 10px;
}


img.svg-color-flip {
    filter: invert(1);
}

a.step-nav {
    min-height: 60px;
}

/* Make the video scale within its container */
.video-container video,
.video-container .plyr {
width: 100%;
height: auto;
/* max-width: 800px;      /* tune for your layout */
}
.video-container {
display: grid;
place-items: start;    /* or center */
gap: 0.5rem;
}

/* Force dropdown menus to have dark background + white text */
.plyr__menu__container {
    background: #1e1e1e !important;  /* dark gray */
    color: #fff !important;
}

/* Menu items */
.plyr__menu__container .plyr__control {
    color: #fff !important;
}

/* Hover/focus state */
.plyr__menu__container .plyr__control:hover,
.plyr__menu__container .plyr__control[aria-expanded="true"] {
    background: #333 !important;
    color: #ffd700 !important; /* optional: gold highlight to match dein Style */
}
/* Timeline hover tooltips (the time label) */
.plyr__tooltip {
    background: #1e1e1e !important;  /* dark bg */
    color: #fff !important;          /* white text */
    border-radius: 4px;
    font-size: 13px;
    padding: 2px 6px;
}

/* Optional: arrow (the little pointer) */
.plyr__tooltip::before {
    border-top-color: #1e1e1e !important;
}

.plyr { width: 100%; }

/* Im Fullscreen keine Max-Breiten/-Höhen erben */
.plyr--fullscreen,
.plyr--fullscreen .plyr__video-wrapper {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
}

/* Video selbst soll Fläche ausfüllen, Seitenverhältnis bewahren */
.plyr--fullscreen video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain; /* oder 'cover', wenn du randlos willst */
}

/* Falls dein Container begrenzt: im Fullscreen Grenzen aufheben */
.plyr--fullscreen .video-container,
.plyr--fullscreen #cmc-video {
    max-width: none !important;
}


.plyr--fullscreen .app-container,
.plyr--fullscreen .mainapp,
.plyr--fullscreen .video-container {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  padding: 0 !important;
}

div.video-guide-links {
    display: flex;
    justify-content: space-between; /* erster ganz links, zweiter ganz rechts */
    width: 100%;                    /* Container volle Breite */
    margin-top: 20px;               /* optionaler Abstand */
}

@media (max-width: 600px) {
    div.video-guide-links {
        flex-direction: column;
        gap: 12px;
    }
}

.text-left{
    text-align: left;
}


/* === Countdown (scoped) === */
.cd {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    /* Karte/Glas kommt von .box-wrapper */
}

.cd-segment {
    display: grid;
    align-content: center;
    justify-items: center;
    min-width: clamp(72px, 18vw, 150px);
    padding: 10px 8px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(74, 158, 255, 0.20);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.cd-value {
    font-size: clamp(40px, 10vw, 110px);
    line-height: 1;
    font-weight: 800;
    color: var(--text-primary, #f8fafc);
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.cd-label {
    margin-top: 6px;
    font-size: clamp(11px, 2.6vw, 15px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cd-sep {
    display: grid;
    align-items: center;
    padding: 0 4px;
    font-size: clamp(32px, 8vw, 64px);
    line-height: 1;
    color: var(--warm-accent-light, #b09958);
    user-select: none;
}

.cd-note {
    margin: 8px 0 0;
    font-size: 14px;
    color: #cbd5e1 !important;
    opacity: 0.95;
}

.cd-live {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #d1fae5;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* subtle tick animation on second change */
.cd-tick { animation: cd-tick 180ms ease-out; }
@keyframes cd-tick {
    0% { transform: scale(1.00); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1.00); }
}

/* Mobile: tighten separators */
@media (max-width: 420px) {
    .cd-sep { padding: 0; }
}


.share-btn{
    max-width: 25px;
    background: none;
    border: none;
        padding: 4px 6px 4px 4px;
    margin-left: 10px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s;
}

/*
.share-btn {
    background: none;
    border: none;
    padding: 4px 6px 4px 4px;
    margin-left: 10px;
    color: #b09958;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;

    border-radius: 50%;
}
.share-btn:hover,
.share-btn:focus {
    opacity: 1;
    color: #d9b655;
}
*/
