.lpc-wrapper {
    max-width: 960px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
}

.lpc-button {
    background-color: #00B8B8;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
}

.lpc-button:disabled {
    background-color: #b8eaea;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.lpc-button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
}

.lpc-button.lpc-outline {
    background-color: #fff;
    color: #444;
    border: 1px solid #ccc;
}

.lpc-intro-section h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.lpc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.lpc-feature-card {
    padding: 1.2rem;
    border-radius: 16px;
    background-color: #f9f9f9;
}

.lpc-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: #E5F8F8;
    margin-bottom: 0.5rem;
}

/* Stats cards */
.lpc-stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.lpc-stat-card {
    text-align: center;
    padding: 0.8rem;
    border-radius: 12px;
    background-color: #f7f7f7;
}

.lpc-stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00B8B8;
}

/* Fragen */
.lpc-questions-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lpc-progress-header {
    margin-bottom: 1rem;
}

.lpc-progress-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background-color: #E5F8F8;
    overflow: hidden;
}

.lpc-progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: #00B8B8;
    transition: width 0.25s ease;
}

.lpc-question-inner {
    padding: 2rem 0;
}

.lpc-category {
    font-size: 11pt;
    color: #00B8B8;
    margin-bottom: 0.5rem;
}

.lpc-question-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.lpc-answer-option {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.lpc-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #ccc;
    margin-right: 0.8rem;
    box-sizing: border-box;
}

.lpc-radio-circle.selected {
    background-color: #00B8B8;
    border-color: #00B8B8;
}

.lpc-nav-buttons {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
}

/* Gradient-Text fürs Gesamtergebnis */
.lpc-gradient-text {
    background: linear-gradient(135deg, #08B3B9, #8F56CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 700;
}

/* Kategorie-Balken (horizontale) */
.lpc-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.lpc-cat-bar-wrap {
    flex: 1;
    margin-left: 1rem;
    background-color: #f0f0f0;
    border-radius: 999px;
    position: relative;
    height: 12px;
    overflow: hidden;
}

.lpc-cat-bar {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.lpc-cat-percent {
    margin-left: 0.5rem;
    min-width: 3rem;
    text-align: right;
}

/* Benchmark Doppelbalken */
.lpc-bench-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1rem;
    cursor: pointer;
}

.lpc-bench-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 180px;
}

.lpc-bench-bar {
    width: 18px;
    border-radius: 6px 6px 0 0;
    background-color: #ccc;
    transition: height 0.3s ease;
}

.lpc-bench-mine {
    background-color: #00B8B8;
}

.lpc-bench-avg {
    background-color: #6D7878;
}

.lpc-bench-tooltip {
    position: absolute;
    background-color: #fff;
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 9999;
}

.lpc-legend-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin: 0 6px 0 12px;
}

.lpc-legend-mine { background-color: #00B8B8; }
.lpc-legend-avg  { background-color: #CCC; }

.lpc-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
}

.lpc-icon-download {
    background-color: #E5F8F8;
    color: #00B8B8;
}

.lpc-icon-calendar {
    background-color: #F6ECFA;
    color: #A347D1;
}

.lpc-bench-group-hover .lpc-bench-bars {
    background-color: rgba(0,0,0,0.03);
    border-radius: 8px;
}
