/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 25 2026 | 09:52:19 */
/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; }

/* ============================
   CONTAINER LAYOUT
   ============================ */
.stock-calc-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    width: 100%;
}

/* Linke Spalte */
.calc-left-panel {
    background: #ffffff;
    padding: 30px;
    color: #333;
    min-width: 0;
    border-radius: 14px 0 0 14px;
}

/* Rechte Spalte */
.calc-right-panel {
    background: linear-gradient(135deg, #0b3b5b 0%, #151a2e 100%);
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 0 14px 14px 0;
}

/* ============================
   BADGES
   ============================ */
.section-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
    width: fit-content;
    letter-spacing: 0.5px;
}
.badge-light { background: #f1f5f9; color: #334155; border: 1px solid #e2e8f0; }
.badge-dark { background: rgba(30, 41, 59, 0.5); color: #e2e8f0; border: 1px solid rgb(51, 65, 85); backdrop-filter: blur(5px); }

/* ============================
   FORM ROWS & LABELS
   ============================ */
.form-row { margin-bottom: 15px; }
.form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

/* ============================
   CUSTOM DROPDOWN
   ============================ */
.custom-dropdown-wrapper {
    position: relative;
    margin-bottom: 20px;
    font-size: 0.95rem;
    z-index: 1;
}
.custom-dropdown-wrapper:has(.dropdown-menu.open) {
    z-index: 2000;
}
.dropdown-trigger {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    font-weight: 500;
    color: #667;
}
.dropdown-trigger:hover { border-color: #aaa; }
.dropdown-arrow { font-size: 0.7rem; color: #888; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    overflow: hidden;
    max-height: min(400px, 60vh);
    overflow-y: auto;
    padding: 5px 0;
}
.dropdown-menu.open { display: block; animation: fadeIn 0.2s ease; }
.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.1s;
    color: #444;
    display: flex;
    align-items: center;
    border-radius: 6px;
    margin-left: 5px;
    margin-right: 5px;
}
.dropdown-item:hover { background: #f1f5f9; }
.dropdown-item.selected { background: #eaf3ff; color: #0b3b5b; font-weight: 600; }


/* ============================
   RESULTS (rechtes Panel)
   ============================ */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.result-card {
    background: rgba(15, 23, 42, 0.4);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgb(51, 65, 85);
}
.result-card.full-width { grid-column: span 2; }
.result-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 2px;
    color: #94a3b8;
}
.result-value {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.result-value.large { font-size: 3rem; }
.result-subtext {
    display: block;
    font-size: 0.65rem;
    color: #cbd5e1;
    margin-top: 2px;
    font-weight: 400;
    opacity: 0.5;
}

/* Hinweis im rechten Panel */
.bfd-hinweis {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: auto;
    padding-top: 15px;
    line-height: 1.4;
}

/* Divider */
.divider { border: 0; border-top: 1px solid #eee; margin: 20px 0; }

/* Panel-Titel */
.panel-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.panel-title-right {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}