/* =====================
   SOLAR RETURN MODÜLÜ - PREMIUM, MODERN, ANİMASYONLU TASARIM (NATAL CHART İLE BİREBİR)
   ===================== */

:root {
    --lux-bg-gradient: linear-gradient(135deg, #1a1333 0%, #2d1e4f 100%);
    --lux-glass-bg: rgba(34, 24, 64, 0.75);
    --lux-gold: #ffd700;
    --lux-gold-gradient: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
    --lux-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --lux-border: 1.5px solid rgba(255, 215, 0, 0.25);
    --lux-card-radius: 22px;
    --lux-card-padding: 2.5rem 2.5rem 2rem 2.5rem;
    --lux-title-font: 'Playfair Display', serif;
    --lux-body-font: 'Montserrat', sans-serif;
    --lux-blur: blur(12px);
    --lux-glow: 0 0 16px 4px #ffd70099;
    --lux-info-bg: rgba(255, 255, 255, 0.08);
    --lux-info-border: 1.5px solid #ffd70055;
    --lux-tooltip-bg: #2d1e4f;
    --lux-tooltip-color: #ffd700;
    --lux-tooltip-shadow: 0 2px 16px 0 #1a133355;
}

body, html {
    background: var(--lux-bg-gradient);
    color: #f5e9c8;
    font-family: var(--lux-body-font);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.solar-form-wrapper, .solar-chart-container, .premium-card {
    background: var(--lux-glass-bg);
    box-shadow: var(--lux-shadow);
    border-radius: var(--lux-card-radius);
    border: var(--lux-border);
    backdrop-filter: var(--lux-blur);
    -webkit-backdrop-filter: var(--lux-blur);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, border 0.3s;
}
.solar-form-wrapper:hover, .premium-card:hover {
    box-shadow: 0 0 32px 8px #ffd70055, var(--lux-shadow);
    border: 2px solid #ffd700cc;
}

.solar-form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    background: transparent;
    border-radius: var(--lux-card-radius);
    align-items: flex-end;
    justify-content: flex-start;
}
.solar-form .form-row {
    display: flex;
    flex-direction: column;
    min-width: 220px;
    flex: 1 1 220px;
    margin-bottom: 1.2rem;
}
.solar-form label {
    font-family: var(--lux-title-font);
    font-size: 1.1rem;
    color: var(--lux-gold);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.solar-form input[type="date"],
.solar-form input[type="time"],
.solar-form input[type="text"],
.solar-form input[type="number"] {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid #ffd70055;
    border-radius: 12px;
    color: #fffbe6;
    font-size: 1.1rem;
    padding: 0.7em 1.1em;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 #1a133322;
}
.solar-form input:focus {
    border: 2px solid #ffd700cc;
    box-shadow: 0 0 8px 2px #ffd70055;
}
.lux-btn {
    background: var(--lux-gold-gradient);
    color: #1a1333;
    font-family: var(--lux-title-font);
    font-size: 1.2rem;
    border: none;
    border-radius: 16px;
    padding: 0.8em 2.2em;
    cursor: pointer;
    box-shadow: 0 2px 16px 0 #ffd70033;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}
.lux-btn:hover, .lux-btn:focus {
    background: linear-gradient(90deg, #ffb300 0%, #ffd700 100%);
    box-shadow: 0 0 24px 6px #ffd70099, 0 2px 16px 0 #ffd70033;
    transform: translateY(-2px) scale(1.04);
}
.lux-animate {
    animation: luxFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes luxFadeIn {
    0% { opacity: 0; transform: translateY(24px) scale(0.98); }
    100% { opacity: 1; transform: none; }
}
.lux-glow {
    filter: drop-shadow(0 0 12px #ffd700cc) drop-shadow(0 0 32px #ffd70055);
    animation: luxGlowPulse 2.5s infinite alternate;
}
@keyframes luxGlowPulse {
    0% { filter: drop-shadow(0 0 8px #ffd700cc); }
    100% { filter: drop-shadow(0 0 24px #ffd700cc) drop-shadow(0 0 32px #ffd70055); }
}
.lux-astro-icon {
    font-size: 2.2rem;
    margin-right: 0.7em;
    vertical-align: middle;
    animation: luxSpin 3.5s linear infinite;
}
@keyframes luxSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.lux-form-info {
    display: flex;
    align-items: center;
    gap: 1.2em;
    background: var(--lux-info-bg);
    border: var(--lux-info-border);
    border-radius: 16px;
    padding: 1.2em 2em;
    margin-top: 1.2em;
    font-size: 1.1rem;
    color: #ffe9a7;
    box-shadow: 0 2px 16px 0 #ffd70022;
}
.lux-form-desc {
    font-family: var(--lux-body-font);
    font-size: 1.1rem;
    color: #ffe9a7;
    letter-spacing: 0.01em;
}

.solar-chart-container {
    margin: 0 auto;
    max-width: 1800px;
    padding: 2.5rem 2.5vw 2.5rem 2.5vw;
}
.premium-title {
    font-family: var(--lux-title-font);
    font-size: 2.7rem;
    color: var(--lux-gold);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 16px #ffd70033, 0 0 2px #fffbe6;
    text-align: left;
    animation: luxFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.premium-info-box {
    background: var(--lux-info-bg);
    border: var(--lux-info-border);
    border-radius: 16px;
    padding: 1.2em 2em;
    margin-bottom: 2.2rem;
    color: #ffe9a7;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1.2em;
    box-shadow: 0 2px 16px 0 #ffd70022;
    animation: luxFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.premium-info-box .icon {
    font-size: 1.7rem;
    color: var(--lux-gold);
    margin-right: 0.7em;
    animation: luxGlowPulse 2.5s infinite alternate;
}
.solar-section-title {
    font-family: var(--lux-title-font);
    font-size: 1.35rem;
    color: var(--lux-gold);
    margin-bottom: 0.7rem;
    margin-top: 2.2rem;
    display: flex;
    align-items: center;
    gap: 0.7em;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px #ffd70022;
}
.solar-section-title .icon {
    font-size: 1.3rem;
    color: var(--lux-gold);
    margin-right: 0.5em;
    animation: luxGlowPulse 2.5s infinite alternate;
}
.solar-section-details {
    font-size: 1.1rem;
    color: #fffbe6;
    margin-bottom: 1.2rem;
    margin-left: 0.5rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
.solar-card {
    background: var(--lux-glass-bg);
    border-radius: 18px;
    border: 1.5px solid #ffd70033;
    box-shadow: 0 2px 16px 0 #ffd70022;
    padding: 1.7rem 2.2rem 1.5rem 2.2rem;
    margin-bottom: 2.2rem;
    margin-top: 1.2rem;
    transition: box-shadow 0.3s, border 0.3s;
    position: relative;
    overflow: hidden;
}
.solar-card:hover {
    box-shadow: 0 0 32px 8px #ffd70055, 0 2px 16px 0 #ffd70022;
    border: 2px solid #ffd700cc;
}
.solar-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2.2rem;
    border-radius: 16px;
    background: var(--lux-glass-bg);
    box-shadow: 0 2px 16px 0 #ffd70022;
    border: 1.5px solid #ffd70033;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.solar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.08em;
    background: transparent;
}
.solar-table th {
    background: rgba(255, 215, 0, 0.08);
    color: #ffd700;
    font-weight: bold;
    padding: 0.7em 1.1em;
    border-bottom: 1.5px solid #ffd70033;
    text-align: center;
}
.solar-table td {
    color: #fffbe6;
    padding: 0.7em 1.1em;
    border-bottom: 1px solid #ffd70022;
    text-align: center;
}
.solar-table tr:hover td {
    background: rgba(255, 215, 0, 0.04);
}
.solar-table tr:last-child td {
    border-bottom: none;
}
.solar-table th, .solar-table td {
    border-right: 1px solid #ffd70022;
}
.solar-table th:last-child, .solar-table td:last-child {
    border-right: none;
}
.element-modality-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    margin-top: 0.7em;
    font-size: 1.08em;
    color: #ffd700;
}
.element-modality-summary .element, .element-modality-summary .modality {
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    padding: 0.5em 1.1em;
    border: 1px solid #ffd70022;
    margin-bottom: 0.3em;
}
.element-modality-summary .element:hover, .element-modality-summary .modality:hover {
    background: linear-gradient(90deg, #ffd70022 0%, #ffb30022 100%);
    color: #fffbe6;
}
.info-tooltip-icon {
    display: inline-block;
    position: relative;
    margin-left: 0.4em;
    color: #ffd700;
    font-size: 1em;
    cursor: pointer;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    line-height: 1.5em;
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 2px 8px 0 #ffd70022;
    transition: background 0.2s, color 0.2s;
}
.info-tooltip-icon:focus, .info-tooltip-icon:hover {
    background: linear-gradient(90deg, #ffd70022 0%, #ffb30022 100%);
    color: #fffbe6;
    outline: none;
}
.info-tooltip-content {
    display: none;
    position: fixed;
    min-width: 220px;
    background: #fffbe6;
    color: #2d1e4f;
    border: 1.5px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 4px 24px 0 #ffd70033;
    padding: 1em 1.2em;
    font-size: 1.01em;
    font-family: var(--lux-body-font);
    z-index: 9999;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.22s cubic-bezier(.4,2,.6,1), transform 0.22s cubic-bezier(.4,2,.6,1);
    white-space: pre-line;
}
.info-tooltip-content.moved-to-body {
    display: none;
    position: fixed !important;
    z-index: 99999 !important;
    background: #fffbe6;
    color: #2d1e4f;
    border: 1.5px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 4px 24px 0 #ffd70033;
    padding: 1em 1.2em;
    font-size: 1.01em;
    font-family: var(--lux-body-font);
    opacity: 1;
    pointer-events: auto;
    white-space: pre-line;
}
.solar-section,
.premium-card,
.solar-section-title,
.element-modality-summary {
  overflow: visible !important;
}

/* Responsive ve animasyonlar natal_chart ile aynı şekilde devam edecek */ 

/* LÜKS, MİSTİK, RESPONSIVE NAVBAR */
.lux-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(90deg, #1a1333cc 0%, #2d1e4fcc 100%);
    box-shadow: 0 4px 32px 0 #1a133355, 0 1.5px 0 0 #ffd70055;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid #ffd70033;
    padding: 0;
    margin-bottom: 2.5rem;
    animation: luxFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.lux-navbar-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2em 2vw 0.2em 2vw;
    position: relative;
}
.lux-nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--lux-gold);
    text-decoration: none;
    letter-spacing: 0.04em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-shadow: 0 2px 16px #ffd70033, 0 0 2px #fffbe6;
    transition: color 0.2s;
}
.lux-nav-logo:hover {
    color: #fffbe6;
}
.lux-nav-menu {
    display: flex;
    align-items: center;
    gap: 1.7em;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lux-nav-link {
    font-family: var(--lux-title-font);
    font-size: 1.13rem;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6em 1.2em;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 2px 8px 0 #ffd70022;
    border: 1.2px solid #ffd70033;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}
.lux-nav-link:hover, .lux-nav-link:focus {
    background: #ffd70033;
    color: #1a1333;
    box-shadow: 0 0 16px 4px #ffd70099;
}
.lux-nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
    cursor: pointer;
    z-index: 10001;
    margin-left: 1em;
}
.lux-nav-hamburger span {
    display: block;
    width: 2em;
    height: 0.28em;
    margin: 0.28em 0;
    background: var(--lux-gold);
    border-radius: 2px;
    transition: all 0.3s;
}
.lux-nav-toggle {
    display: none;
}
@media (max-width: 900px) {
    .lux-nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70vw;
        max-width: 340px;
        background: linear-gradient(135deg, #1a1333ee 0%, #2d1e4fee 100%);
        box-shadow: -4px 0 32px 0 #1a133355;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 4.5em 1.5em 2em 1.5em;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(.4,0,.2,1);
        z-index: 10000;
    }
    .lux-nav-toggle:checked ~ .lux-nav-hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .lux-nav-toggle:checked ~ .lux-nav-hamburger span:nth-child(2) {
        opacity: 0;
    }
    .lux-nav-toggle:checked ~ .lux-nav-hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .lux-nav-toggle:checked ~ .lux-nav-menu {
        transform: translateX(0);
    }
    .lux-nav-hamburger {
        display: flex;
    }
    .lux-nav-menu li {
        width: 100%;
        margin-bottom: 1.2em;
    }
    .lux-nav-link {
        width: 100%;
        display: block;
        font-size: 1.15rem;
        padding: 1em 1.2em;
        border-radius: 10px;
    }
}
@media (max-width: 600px) {
    .lux-navbar-inner {
        padding: 0.2em 0.5em 0.2em 0.5em;
    }
    .lux-nav-logo {
        font-size: 1.3rem;
    }
}

/* Quota bilgi kutusu stilleri */
.solar-error {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quota-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #ffd700;
}

.quota-info p {
    margin: 8px 0;
    line-height: 1.5;
}

.quota-info strong {
    color: #ffd700;
}

/* Accordion premium stil */
.accordion {
    margin: 0.5em 0;
}
.accordion-toggle {
    background: #2d2346;
    color: #ffd700;
    border: none;
    padding: 0.3em 1em;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 0.3em;
}
.accordion-toggle[aria-expanded="true"] {
    background: #ffd700;
    color: #2d2346;
}
.accordion-content {
    display: none;
    padding: 0.5em 1em;
    background: #1a1530;
    border-radius: 6px;
    color: #fff;
    font-size: 1em;
    margin-bottom: 0.5em;
}
.accordion-content.active {
    display: block;
}
.asteroid-warning {
    color: #ffb300;
    font-weight: 600;
    margin-left: 0.5em;
}

.asteroid-warning-block {
    color: #ffb300;
    background: #2a1a00;
    border: 1px solid #ffb300;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 8px 0;
    font-weight: bold;
    font-size: 1.05em;
    display: block;
}

.transit-orb-warning {
    background: #2a1a00;
    color: #ffb300;
    border-left: 4px solid #ffb300;
    font-weight: 600;
    box-shadow: 0 1px 6px 0 rgba(255,179,0,0.08);
    transition: background 0.2s;
}

.premium-table-card, .premium-planet-table-card {
    background: var(--lux-glass-bg);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 #ffd70022;
    border: 1.5px solid #ffd70055;
    margin: 2.5rem 0;
    padding: 0 0 2.2rem 0;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.premium-table-header, .premium-planet-table-header {
    display: flex;
    align-items: center;
    gap: 1.1em;
    background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
    color: #2d1e4f;
    font-family: var(--lux-title-font);
    font-size: 1.35rem;
    font-weight: 700;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 1.1em 2em 1.1em 1.5em;
    border-bottom: 2px solid #ffb300;
}
.premium-table-title, .premium-planet-table-title {
    font-size: 1.18em;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.premium-table-header .icon, .premium-planet-table-header .icon {
    font-size: 1.5em;
    margin-right: 0.5em;
}
.premium-table-header .info-tooltip-icon, .premium-planet-table-header .info-tooltip-icon {
    margin-left: auto;
    color: #2d1e4f;
    font-size: 1.1em;
    background: #fffbe6;
    border-radius: 50%;
    width: 1.7em;
    height: 1.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1.5px solid #ffb300;
    cursor: pointer;
    position: relative;
}
/* --- TABLO BİLİMSEL VE AKADEMİK STİL --- */
.premium-data-table, .premium-planet-table {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 0;
    background: #231c36;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 #ffd70022;
    border: 2px solid #ffd70055;
    overflow: hidden;
    font-size: 1.07em;
}
.premium-data-table thead tr th, .premium-planet-table thead tr th {
    background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
    color: #2d1e4f;
    font-weight: 700;
    font-size: 1.07em;
    padding: 0.6em 0.4em;
    border: none;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 2;
    box-shadow: 0 2px 8px 0 #ffd70033;
}
.premium-data-table tbody tr, .premium-planet-table tbody tr {
    background: #231c36;
    color: #fffbe6;
    font-size: 1.07em;
    border-bottom: 1.5px solid #3a2d5c;
    transition: background 0.2s;
}
.premium-data-table tbody tr:nth-child(even), .premium-planet-table tbody tr:nth-child(even) {
    background: #2d2542;
}
.premium-data-table tbody tr:hover, .premium-planet-table tbody tr:hover {
    background: #ffd70033 !important;
    color: #1a1333 !important;
    font-weight: 700;
    cursor: pointer;
}
.premium-data-table td, .premium-planet-table td {
    padding: 0.6em 0.4em;
    border: none;
    font-family: var(--lux-body-font);
    font-size: 1.07em;
    vertical-align: middle;
}
.premium-data-table th, .premium-data-table td, .premium-planet-table th, .premium-planet-table td {
    border-right: 1.5px solid #ffd70055;
}
.premium-data-table th:last-child, .premium-data-table td:last-child, .premium-planet-table th:last-child, .premium-planet-table td:last-child {
    border-right: none;
}
.premium-data-table thead tr th {
    box-shadow: 0 2px 8px 0 #ffd70033;
}
@media (max-width: 700px) {
    .premium-data-table td, .premium-data-table th, .premium-planet-table td, .premium-planet-table th {
        padding: 0.4em 0.2em;
        font-size: 0.98em;
    }
}
/* --- Retro gezegen vurgusu --- */
.retro-row, .retro-cell {
    background: #3a1a1a !important;
    color: #ff6b6b !important;
    font-weight: 700;
}
.retro-cell {
    border-radius: 6px;
    border: 1.5px solid #ff6b6b;
}

/* --- Majör açı vurgusu --- */
.major-aspect-row {
    background: linear-gradient(90deg, #ffd70033 0%, #ffb30033 100%) !important;
    color: #ffd700 !important;
    font-weight: 700;
}

/* --- Önemli ev vurgusu --- */
.important-house, .important-house-row {
    background: #1a2d4f !important;
    color: #7ecbff !important;
    font-weight: 700;
}

/* --- SVG görsel alanları için --- */
.summary-placeholder svg {
    display: inline-block;
    background: #241a3a;
    border-radius: 12px;
    box-shadow: 0 2px 8px 0 #ffd70022;
    margin: 0.2em 0.5em;
}
.scientific-note, .premium-info-box, .astro-list {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 #ffd70011;
    padding: 1.2em 2em;
    font-size: 1.08em;
    color: #ffe9a7;
    margin-bottom: 1.2em;
}
.astro-list {
    list-style: disc inside;
    line-height: 1.7;
    background: rgba(255,255,255,0.02);
    padding: 1.2em 2em;
    border-radius: 10px;
    margin-bottom: 1.2em;
}
.critical-orb-row {
    background: #3a1a1a !important;
    color: #ff6b6b !important;
    font-weight: 700;
}
.table-filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2em;
    width: 100%;
}
.table-filter-input {
    min-width: 260px;
    max-width: 340px;
    padding: 0.7em 1.1em;
    border-radius: 10px;
    border: 1.5px solid #ffd70055;
    font-size: 1.08em;
    background: #fffbe6;
    color: #2d1e4f;
    box-shadow: 0 2px 8px 0 #ffd70022;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    margin: 0 auto;
    display: block;
}
.table-filter-input:focus {
    border: 2px solid #ffd700cc;
    box-shadow: 0 0 8px 2px #ffd70055;
}
.tab-header {
    display: flex;
    justify-content: center;
    gap: 1.1em;
    margin-bottom: 1.5em;
    list-style: none;
    padding: 0 0.7em;
    max-width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
}
.tab-header li {
    display: flex !important;
    align-items: center;
    gap: 0.7em;
    justify-content: center;
    cursor: pointer;
    padding: 0.7em 1.2em;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, #ffd70022 0%, #ffb30022 100%);
    margin: 0 0.1em;
    font-weight: 600;
    font-size: 1.13em;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
    min-width: 140px;
    max-width: 220px;
    white-space: nowrap;
}
.tab-header li.active {
    background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
    color: #2d1e4f;
    font-weight: 700;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 2;
}
.tab-icon {
    font-size: 1.25em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.2em;
}
.tab-text {
    font-size: 1.13em;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}
.flex-summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2em;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.2em;
}
.flex-summary-item {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.08em;
}
.summary-placeholder svg {
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 900px) {
    .flex-summary-row {
        flex-direction: column;
        gap: 1.2em;
        align-items: flex-start;
    }
}