/* ===== Settings Shell ===== */
.lp-area-hero {
    margin-top: 18px;
    border-radius: 18px;
    background: linear-gradient(90deg, #3aa0ff 0%, #053a7a 55%, #ffd200 100%);
    box-shadow: 0 14px 28px rgba(2,6,23,.14);
    color: #fff;
    overflow: hidden;
}

.lp-area-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px;
}

.lp-area-hero-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-area-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    font-size: 26px;
}

.lp-area-breadcrumb {
    font-weight: 900;
    font-size: 12px;
    opacity: .95;
}

    .lp-area-breadcrumb span {
        opacity: .8;
        margin: 0 6px;
    }

.lp-area-title {
    font-size: 28px;
    font-weight: 1000;
    line-height: 1.1;
}

.lp-area-sub {
    font-weight: 800;
    opacity: .92;
    margin-top: 2px;
}

.lp-level-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    font-weight: 1000;
    white-space: nowrap;
}

.lp-stabs {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-stab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 1000;
    text-decoration: none;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e9eef5;
    box-shadow: 0 10px 18px rgba(2,6,23,.06);
}

    .lp-stab:hover {
        background: #f6fbff;
    }

    .lp-stab.active {
        background: linear-gradient(90deg, #3aa0ff 0%, #053a7a 100%);
        color: #fff;
        border-color: transparent;
    }

.lp-card {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(2,6,23,.06);
    padding: 18px;
}

.lp-card-head {
    margin-bottom: 12px;
}

.lp-card-title {
    font-size: 16px;
    font-weight: 1000;
    color: #0f172a;
}

.lp-card-sub {
    font-weight: 800;
    color: #64748b;
    font-size: 12px;
    margin-top: 3px;
}

.lp-soft {
    background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 70%);
    border: 2px solid #c7d2fe;
}

.lp-hr {
    margin: 16px 0;
    opacity: .15;
}

/* Profil Top */
.lp-profile-top {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.lp-avatar-wrap {
    display: flex;
    gap: 14px;
    align-items: center;
}

.lp-avatar {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid #eaf3ff;
    box-shadow: 0 12px 24px rgba(2,6,23,.08);
    background: #f1f5f9;
}

    .lp-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.lp-avatar-hint {
    font-size: 11px;
    color: #64748b;
    font-weight: 800;
    margin-top: 6px;
}

.lp-profile-meta .lp-pname {
    font-weight: 1000;
    font-size: 18px;
}

.lp-profile-meta .lp-prole {
    font-weight: 1000;
    color: #0783ff;
    margin-top: 2px;
}

.lp-profile-meta .lp-pmail, .lp-profile-meta .lp-psup {
    font-weight: 800;
    color: #64748b;
    font-size: 12px;
    margin-top: 4px;
}

.lp-switches {
    display: grid;
    gap: 12px;
}

.lp-switch {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e9eef5;
}

.lp-switch-title {
    font-weight: 1000;
}

.lp-switch-sub {
    font-weight: 800;
    color: #64748b;
    font-size: 12px;
}

.lp-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.lp-savebtn {
    border-radius: 12px;
    font-weight: 1000;
    padding: 10px 16px;
}

/* Banner */
.lp-banner {
    border-radius: 16px;
    padding: 16px 18px;
    background: linear-gradient(90deg, #3aa0ff 0%, #053a7a 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(2,6,23,.10);
}

.lp-banner-title {
    font-weight: 1000;
    font-size: 16px;
}

.lp-banner-sub {
    font-weight: 800;
    opacity: .92;
    font-size: 12px;
    margin-top: 2px;
}

/* Tiles */
.lp-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

@media(max-width:1100px) {
    .lp-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:650px) {
    .lp-tiles {
        grid-template-columns: 1fr;
    }
}

.lp-tile {
    border-radius: 16px;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(2,6,23,.12);
    position: relative;
    overflow: hidden;
}

    .lp-tile:hover {
        transform: translateY(-1px);
    }

.lp-tile-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.22);
    font-size: 20px;
}

.lp-tile-title {
    font-weight: 1000;
    font-size: 14px;
    margin-top: 12px;
}

.lp-tile-sub {
    font-weight: 800;
    opacity: .92;
    font-size: 12px;
    margin-top: 4px;
}

.t-blue {
    background: linear-gradient(135deg, #3aa0ff 0%, #053a7a 100%);
}

.t-teal {
    background: linear-gradient(135deg, #1aa6b7 0%, #0a4b57 100%);
}

.t-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #312e81 100%);
}

.t-green {
    background: linear-gradient(135deg, #22c55e 0%, #065f46 100%);
}

.t-orange {
    background: linear-gradient(135deg, #fb923c 0%, #7c2d12 100%);
}

/* Systemrolle & Perms */
.lp-infobox {
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e9eef5;
    padding: 12px;
}

.lp-ibox-label {
    font-weight: 900;
    font-size: 11px;
    color: #64748b;
}

.lp-ibox-value {
    font-weight: 1000;
    font-size: 16px;
    margin-top: 3px;
}

.lp-ibox-sub {
    font-weight: 800;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

.lp-sup {
    padding: 12px;
    border-radius: 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #0f172a;
    font-weight: 900;
}

.lp-permlist {
    display: grid;
    gap: 10px;
}

.lp-perm {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e9eef5;
}

.lp-perm-ic {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 1000;
}

    .lp-perm-ic.ok {
        background: #dcfce7;
        color: #166534;
        border: 1px solid #86efac;
    }

    .lp-perm-ic.no {
        background: #f1f5f9;
        color: #64748b;
        border: 1px solid #e2e8f0;
    }

.lp-perm-text {
    font-weight: 900;
    color: #0f172a;
    font-size: 13px;
}

/* Activities */
.lp-activity {
    display: grid;
    gap: 12px;
}

.lp-act-item {
    display: flex;
    gap: 12px;
    position: relative;
}

.lp-act-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #0783ff;
    margin-top: 6px;
    box-shadow: 0 0 0 6px rgba(11,94,215,.12);
}

.lp-act-body {
    flex: 1;
}

.lp-act-title {
    font-weight: 1000;
    color: #0f172a;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.lp-act-time {
    color: #94a3b8;
    font-weight: 900;
    font-size: 11px;
    white-space: nowrap;
}

.lp-act-sub {
    color: #64748b;
    font-weight: 800;
    font-size: 12px;
    margin-top: 2px;
}

.lp-act-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-weight: 1000;
    font-size: 11px;
    color: #475569;
}

.lp-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 1000;
    font-size: 28px;
    letter-spacing: .5px;
    background: linear-gradient(135deg, #3aa0ff 0%, #053a7a 55%, #ffd200 100%);
}

/* Settings Neu*/

.lp-settings-tabs-wrap {
    background: #fff;
    border: 1px solid #e6edf7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(2,6,23,.08);
    margin-bottom: 18px;
    display: flex;
    align-items: stretch;
}

.lp-settings-tabs {
    display: flex;
    gap: 0;
    flex: 1;
    min-width: 0;
}

/* Kompakte Identität rechts in der Tab-Leiste (Unter-Tabs außer „Profil") */
.lp-settings-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-left: 1px solid #e6edf7;
    text-decoration: none;
    color: #0f172a;
    flex-shrink: 0;
    max-width: 240px;
    transition: background .12s;
}
.lp-settings-mini:hover { background: #eef6ff; }
.lp-settings-mini-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0783ff, #3aa0ff);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}
.lp-settings-mini-av img { width: 100%; height: 100%; object-fit: cover; }
.lp-settings-mini-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.lp-settings-mini-name { font-weight: 800; font-size: 13.5px; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-settings-mini-role { font-size: 11.5px; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 720px) {
    .lp-settings-mini-text { display: none; }
}
@media (max-width: 520px) {
    .lp-settings-mini { display: none; }
}

.lp-tab {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 900;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f7fbff;
}

    .lp-tab i {
        font-size: 18px;
        opacity: .95;
    }

    .lp-tab:hover {
        background: #eef6ff;
    }

    .lp-tab.active {
        background: #fff;
        border-bottom-color: #3aa0ff;
        box-shadow: inset 0 -1px 0 rgba(45,156,219,.25);
    }

.lp-settings-card {
    background: #fff;
    border: 1px solid #e6edf7;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(2,6,23,.08);
    padding: 22px;
}

.lp-profile-head {
    display: flex;
    gap: 18px;
    align-items: center;
}

.lp-avatar {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid rgba(2,6,23,.08);
    box-shadow: 0 10px 20px rgba(2,6,23,.12);
}

.lp-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 1000;
    color: #fff;
    background: linear-gradient(135deg, #3aa0ff 0%, #C9D64B 55%, #FFD200 100%);
}

.lp-profile-name {
    font-size: 34px;
    font-weight: 1000;
    line-height: 1.05;
}

.lp-profile-role {
    font-weight: 900;
    color: #334155;
    margin-top: 2px;
}

.lp-profile-mail {
    color: #64748b;
    margin-top: 2px;
}

.lp-panel {
    border: 2px solid rgba(160, 90, 255, .25);
    background: linear-gradient(180deg, rgba(160, 90, 255, .06), rgba(160, 90, 255, .03));
    border-radius: 12px;
    padding: 18px;
}

.lp-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1000;
    font-size: 18px;
    margin-bottom: 12px;
}

    .lp-panel-title i {
        color: #7c3aed;
        font-size: 18px;
    }

.lp-label {
    font-weight: 900;
    color: #0f172a;
}

.lp-muted {
    color: #64748b;
    font-weight: 700;
    font-size: 12px;
}

.lp-input {
    border-radius: 10px !important;
    padding: 10px 12px !important;
    border: 1px solid #d6dee8 !important;
    background: #fff;
}

    .lp-input[readonly] {
        background: #f6f7f9;
    }

.lp-hint {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.lp-sep {
    border-top: 1px solid rgba(2,6,23,.08);
    margin: 16px 0;
}

.lp-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-check .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.lp-check .form-check-label {
    font-weight: 900;
    color: #0f172a;
}

.lp-primary-btn {
    border-radius: 12px !important;
    padding: 10px 16px !important;
    font-weight: 1000 !important;
    color: #fff !important;
    border: 0 !important;
    background: linear-gradient(90deg, #3aa0ff 0%, #053a7a 100%) !important;
    box-shadow: 0 10px 18px rgba(2,6,23,.18);
}

    .lp-primary-btn:hover {
        filter: brightness(.98);
    }

.lp-outline-btn {
    border-radius: 10px !important;
    font-weight: 900 !important;
    border: 1px solid #cfe3ff !important;
    background: #fff !important;
    color: #0783ff !important;
}

.lp-hr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-hr-link {
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e6edf7;
    background: #f7fbff;
    color: #334155;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .lp-hr-link:hover {
        background: #eef6ff;
        color: #0783ff;
    }

    .lp-hr-link.active {
        background: #eaf3ff;
        color: #0783ff;
        border-color: #cfe3ff;
    }

.lp-tile {
    text-decoration: none;
    border: 1px solid #e6edf7;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    box-shadow: 0 10px 18px rgba(2,6,23,.06);
    height: 100%;
}

    .lp-tile:hover {
        background: #f9fbff;
    }

.lp-tile-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    border: 1px solid #cfe3ff;
    color: #0783ff;
    font-size: 18px;
    flex: 0 0 auto;
}

.lp-tile-title {
    font-weight: 1000;
    color: #0f172a;
}

.lp-tile-sub {
    color: #64748b;
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px;
}

.lp-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-list-item {
    border: 1px solid #e6edf7;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #fff;
}

.lp-list-title {
    font-weight: 1000;
    color: #0f172a;
}

.lp-list-sub {
    color: #64748b;
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px;
}

/* ===== Level Accordion (Screenshot) ===== */
.lp-accordion-card {
    border: 1px solid #e6edf7;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 18px rgba(2,6,23,.06);
}

.lp-accordion-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 0;
    background: #fff;
    font-weight: 1000;
    color: #0f172a;
}

.lp-accordion-body {
    padding: 14px 16px;
    background: #fff;
}

.lp-level-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 12px;
    background: #f6f7f9;
    margin-bottom: 12px;
}

    .lp-level-row:last-child {
        margin-bottom: 0;
    }

.lp-level-badge {
    min-width: 82px;
    text-align: center;
    font-weight: 1000;
    border-radius: 8px;
    padding: 8px 10px;
    background: #e9eef5;
    color: #0f172a;
}

    .lp-level-badge.active {
        outline: 3px solid rgba(45,156,219,.25);
    }

.lp-level-title {
    font-weight: 1000;
    color: #0f172a;
}

.lp-level-sub {
    color: #64748b;
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .lp-profile-name {
        font-size: 26px;
    }

    .lp-avatar {
        width: 92px;
        height: 92px;
    }
}

/* ===== Panels: Varianten (Bank = purple, Steuer = green) ===== */

/* Default bleibt purple über .lp-panel (dein vorhandenes Styling) */
.lp-panel--purple {
    border: 2px solid rgba(160, 90, 255, .25);
    background: linear-gradient(180deg, rgba(160, 90, 255, .06), rgba(160, 90, 255, .03));
}

/* Grün wie Screenshot 2 */
.lp-panel--green {
    border: 2px solid rgba(34, 197, 94, .25);
    background: linear-gradient(180deg, rgba(34, 197, 94, .07), rgba(34, 197, 94, .03));
}

    /* Icon-Farbe automatisch passend zum Panel */
    .lp-panel--green .lp-panel-title i {
        color: #16a34a;
    }

.lp-panel--purple .lp-panel-title i {
    color: #7c3aed; /* entspricht deinem aktuellen look */
}

/*Einstellungen Files*/
.lp-file-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.lp-file-left {
    flex: 1;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.lp-file-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.lp-file-sub {
    color: #6b7280;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-file-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-action-btn {
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
    border: 0;
}

.lp-btn-blue {
    background: #2f6df6;
    color: #fff;
}

    .lp-btn-blue:hover {
        background: #275fda;
        color: #fff;
    }

.lp-btn-green {
    background: #22c55e;
    color: #fff;
}

    .lp-btn-green:hover {
        background: #1faa52;
        color: #fff;
    }

.lp-btn-gray {
    background: #6b7280;
    color: #fff;
}

    .lp-btn-gray:hover {
        background: #5b6470;
        color: #fff;
    }

/* Avatar hover upload */
.lp-avatar-form {
    display: inline-block;
}

.lp-avatar-wrap {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px; /* ggf. an dein Header-Design anpassen */
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.lp-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-avatar-input {
    display: none;
}

.lp-avatar-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transition: opacity .15s ease;
}

.lp-avatar-wrap:hover .lp-avatar-overlay {
    opacity: 1;
}

.lp-avatar-overlay i {
    font-size: 18px;
}

.lp-avatar-overlay span {
    font-size: 12px;
}

/* ===== MyWork: Vacation Account ===== */

.lp-mywork-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(90deg, #1e3a5f 0%, #3aa0ff 50%, #7c3aed 100%);
    color: #fff;
}

.lp-mywork-hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    font-size: 22px;
}

.lp-mywork-hero-title {
    font-weight: 1000;
    font-size: 20px;
}

.lp-mywork-hero-sub {
    font-weight: 800;
    opacity: .9;
    font-size: 13px;
    margin-top: 2px;
}

.lp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #334155;
    font-weight: 900;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #e6edf7;
    background: #f7fbff;
    font-size: 13px;
}

.lp-back-link:hover {
    background: #eef6ff;
    color: #0783ff;
}

.lp-vac-account {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(90deg, #0656b0 0%, #0783ff 25%, #22c55e 50%, #fbbf24 75%, #7c3aed 100%);
    padding: 22px;
    color: #fff;
}

.lp-vac-account-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1000;
    font-size: 18px;
    margin-bottom: 16px;
}

.lp-vac-account-head i {
    font-size: 20px;
}

.lp-vac-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.lp-vac-stat {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    padding: 16px;
    text-align: left;
}

.lp-vac-stat-key {
    font-weight: 900;
    font-size: 13px;
    opacity: .95;
    margin-bottom: 6px;
}

.lp-vac-stat-val {
    font-weight: 1000;
    font-size: 36px;
    line-height: 1;
}

.lp-vac-stat-label {
    font-weight: 800;
    font-size: 12px;
    opacity: .85;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .lp-vac-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Meine Zahlen – mitarbeitergerechte Statistik ===== */
.lp-konto {
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid #e6edf7;
    background: #fff;
}
.lp-konto--pos  { background: linear-gradient(180deg,#f0fdf4,#fff); border-color:#bbf7d0; }
.lp-konto--neg  { background: linear-gradient(180deg,#fff7ed,#fff); border-color:#fed7aa; }
.lp-konto--zero { background: linear-gradient(180deg,#f8fafc,#fff); border-color:#e2e8f0; }

.lp-konto-top { display:flex; align-items:center; gap:14px; }
.lp-konto-ico {
    width:54px; height:54px; border-radius:16px; flex:0 0 auto;
    display:grid; place-items:center; font-size:26px; color:#fff;
    background:#16a34a;
}
.lp-konto--neg  .lp-konto-ico { background:#f97316; }
.lp-konto--zero .lp-konto-ico { background:#64748b; }
.lp-konto-headtext { flex:1; min-width:0; }
.lp-konto-title { font-weight:1000; font-size:18px; color:#0f172a; }
.lp-konto-sub   { font-weight:700; font-size:13px; color:#64748b; margin-top:2px; }
.lp-konto-big   { font-weight:1000; font-size:34px; line-height:1; color:#16a34a; white-space:nowrap; }
.lp-konto--neg  .lp-konto-big { color:#ea580c; }
.lp-konto--zero .lp-konto-big { color:#475569; }

.lp-konto-msg {
    display:flex; align-items:flex-start; gap:10px;
    margin-top:16px; padding:14px 16px; border-radius:12px;
    background:#fff; border:1px solid #e6edf7;
    font-weight:700; font-size:14px; color:#334155; line-height:1.45;
}
.lp-konto-msg i { font-size:18px; margin-top:1px; flex:0 0 auto; }
.lp-konto--pos  .lp-konto-msg i { color:#16a34a; }
.lp-konto--neg  .lp-konto-msg i { color:#f97316; }
.lp-konto--zero .lp-konto-msg i { color:#64748b; }
.lp-konto-msg strong { color:#0f172a; }

/* Waage (visuelle Balance) */
.lp-waage { position:relative; margin-top:18px; height:18px; }
.lp-waage-bar {
    position:absolute; inset:0; border-radius:999px;
    background:linear-gradient(90deg,#fca5a5 0%,#fde68a 50%,#86efac 100%);
}
.lp-waage-marker {
    position:absolute; top:50%; transform:translate(-50%,-50%);
    width:22px; height:22px; border-radius:50%;
    background:#fff; border:4px solid #0f172a;
    box-shadow:0 2px 6px rgba(2,6,23,.3);
}
.lp-waage-legend {
    display:flex; justify-content:space-between;
    margin-top:8px; font-weight:800; font-size:11px; color:#94a3b8; text-align:center;
}
.lp-waage-legend span:nth-child(2) { color:#64748b; }

.lp-konto-foot { margin-top:14px; font-weight:800; font-size:13px; color:#64748b; }
.lp-konto-foot strong { color:#0f172a; }

/* Einfache Kacheln */
.lp-fcard {
    height:100%; border:1px solid #e6edf7; border-radius:14px;
    background:#fff; padding:18px; box-shadow:0 8px 20px rgba(2,6,23,.05);
}
.lp-fcard-ico {
    width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
    font-size:20px; color:#fff; margin-bottom:12px;
}
.lp-fcard-ico--blue  { background:#3aa0ff; }
.lp-fcard-ico--green { background:#22c55e; }
.lp-fcard-ico--red   { background:#ef4444; }
.lp-fcard-title { font-weight:900; font-size:13px; color:#64748b; }
.lp-fcard-big   { font-weight:1000; font-size:30px; color:#0f172a; line-height:1; margin:6px 0 12px; }
.lp-fcard-note  { font-weight:700; font-size:12.5px; color:#64748b; line-height:1.4; }
.lp-fcard-note strong { color:#0f172a; }

/* Fortschrittsbalken */
.lp-prog { height:12px; border-radius:999px; background:#eef2f7; overflow:hidden; margin-bottom:10px; }
.lp-prog-fill { height:100%; border-radius:999px; transition:width .3s ease; }
.lp-prog-fill--blue  { background:linear-gradient(90deg,#0783ff,#3aa0ff); }
.lp-prog-fill--green { background:linear-gradient(90deg,#16a34a,#22c55e); }

/* Monats-Balken (reines CSS) */
.lp-trend { border:1px solid #e6edf7; border-radius:14px; background:#fff; padding:18px; }
.lp-trend-title { font-weight:1000; font-size:15px; color:#0f172a; margin-bottom:16px; }
.lp-trend-bars { display:flex; align-items:flex-end; gap:10px; height:150px; }
.lp-trend-col { flex:1 1 0; display:flex; flex-direction:column; align-items:center; height:100%; }
.lp-trend-val { font-weight:1000; font-size:13px; color:#334155; margin-bottom:6px; }
.lp-trend-track { flex:1; width:100%; display:flex; align-items:flex-end; }
.lp-trend-bar {
    width:100%; border-radius:8px 8px 0 0; min-height:4px;
    background:linear-gradient(180deg,#bfdbfe,#93c5fd);
    transition:height .3s ease;
}
.lp-trend-bar--now { background:linear-gradient(180deg,#3399ff,#0783ff); }
.lp-trend-lbl { font-weight:800; font-size:12px; color:#94a3b8; margin-top:8px; text-transform:capitalize; }
.lp-trend-cap {
    margin-top:14px; font-weight:700; font-size:12px; color:#94a3b8; line-height:1.4;
    display:flex; gap:6px; align-items:flex-start;
}
.lp-trend-cap i { margin-top:1px; flex:0 0 auto; }

@media (max-width: 768px) {
    .lp-konto-big { font-size:26px; }
    .lp-trend-val { font-size:11px; }
}

.lp-supervisor-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.lp-supervisor-info-icon {
    color: #64748b;
    font-size: 20px;
    flex: 0 0 auto;
    margin-top: 2px;
}

.lp-supervisor-info-title {
    font-weight: 1000;
    color: #0f172a;
}

.lp-supervisor-info-sub {
    color: #64748b;
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
}

.lp-vac-submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    color: #fff;
    font-weight: 1000;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(34,197,94,.25);
}

.lp-vac-submit-btn:hover {
    filter: brightness(.95);
}

/* Vacation Request Cards */
.lp-vac-card {
    border: 1px solid #e6edf7;
    border-radius: 14px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(2,6,23,.06);
}

.lp-vac-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.lp-vac-card-dates {
    font-weight: 1000;
    font-size: 18px;
    color: #0f172a;
}

.lp-vac-card-sub {
    color: #64748b;
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
}

.lp-vac-card-reason {
    color: #6366f1;
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
    margin-top: 6px;
}

.lp-vac-card-sep {
    border-top: 1px solid #e2e8f0;
    margin: 14px 0;
}

.lp-vac-card-footer {
    color: #94a3b8;
    font-weight: 800;
    font-size: 12px;
    margin-top: 12px;
}

/* Status Badges */
.lp-vac-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}

.lp-vac-badge--green {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.lp-vac-badge--blue {
    background: #dbeafe;
    color: #0656b0;
    border: 1px solid #93c5fd;
}

.lp-vac-badge--yellow {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde68a;
}

.lp-vac-badge--red {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Workflow Steps */
.lp-vac-workflow {
    padding: 0;
}

.lp-vac-workflow-label {
    font-weight: 900;
    font-size: 11px;
    color: #64748b;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.lp-wf-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.lp-wf-step:last-child {
    margin-bottom: 0;
}

.lp-wf-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 16px;
    flex: 0 0 auto;
}

.lp-wf-icon--green {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #86efac;
}

.lp-wf-icon--yellow {
    background: #fef9c3;
    color: #ca8a04;
    border: 1px solid #fde68a;
}

.lp-wf-icon--red {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.lp-wf-icon--gray {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.lp-wf-num {
    font-weight: 1000;
    font-size: 13px;
}

.lp-wf-body {
    flex: 1;
}

.lp-wf-title {
    font-weight: 1000;
    color: #0f172a;
    font-size: 14px;
}

.lp-wf-sub {
    font-weight: 700;
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.lp-wf-sub--green {
    color: #16a34a;
}

.lp-wf-sub--yellow {
    color: #ca8a04;
}

.lp-wf-sub--red {
    color: #dc2626;
}

/*Ende Files*/

/*Profilbild update*/

/* ===== Avatar Hover Upload ===== */
.lp-avatar.lp-avatar--editable {
    position: relative;
}

.lp-avatar-form {
    position: absolute;
    inset: 0;
    margin: 0;
}

.lp-avatar-file {
    display: none;
}

.lp-avatar-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(2,6,23,.55);
    backdrop-filter: blur(2px);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .15s ease;
}

.lp-avatar--editable:hover .lp-avatar-overlay {
    opacity: 1;
}

.lp-avatar-overlay i {
    font-size: 26px;
}

/* ===== Files/Payroll List like Screenshot ===== */
.lp-file-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f7fbff;
    border: 1px solid #e6edf7;
    box-shadow: 0 10px 18px rgba(2,6,23,.06);
    cursor: pointer;
}

    .lp-file-item:hover {
        background: #ffffff;
    }

.lp-file-left {
    min-width: 0;
}

.lp-file-title {
    font-weight: 1000;
    color: #0f172a;
    font-size: 16px;
}

.lp-file-sub {
    margin-top: 4px;
    color: #64748b;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-file-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.lp-action-btn {
    border-radius: 12px;
    font-weight: 1000;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 0;
    box-shadow: 0 12px 22px rgba(2,6,23,.12);
    white-space: nowrap;
}

.lp-action-btn--blue {
    background: #0783ff;
    color: #fff;
}

.lp-action-btn--green {
    background: #16a34a;
    color: #fff;
}

.lp-action-btn--dark {
    background: #475569;
    color: #fff;
}

.lp-action-btn:hover {
    filter: brightness(.98);
    color: #fff;
}

.lp-action-form {
    display: inline-block;
    margin: 0;
}

    .lp-action-form button {
        appearance: none;
    }

/* mobile */
@media (max-width: 650px) {
    .lp-file-item {
        align-items: flex-start;
    }

    .lp-file-actions {
        justify-content: flex-start;
    }

    .lp-file-sub {
        white-space: normal;
    }
}

/* ===== Sick Leave (Krankmeldung) ===== */
.lp-sick-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(90deg, #fef2f2 0%, #fee2e2 55%, #fecaca 100%);
    border: 1px solid #fca5a5;
    flex-wrap: wrap;
}

.lp-sick-hero-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #dc2626;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(220, 38, 38, .15);
}

.lp-sick-hero-title {
    font-size: 18px;
    font-weight: 800;
    color: #7f1d1d;
    line-height: 1.2;
}

.lp-sick-hero-sub {
    font-size: 13px;
    color: #991b1b;
    margin-top: 2px;
}

.lp-sick-hero-stats {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-wrap: wrap;
}

.lp-sick-hero-stat {
    background: #fff;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 8px 14px;
    min-width: 80px;
    text-align: center;
}

.lp-sick-hero-stat-val {
    font-size: 20px;
    font-weight: 800;
    color: #7f1d1d;
    line-height: 1;
}

.lp-sick-hero-stat-lbl {
    font-size: 11px;
    color: #991b1b;
    margin-top: 3px;
    font-weight: 600;
}

.lp-sick-attest-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fffbeb;
    border: 2px solid #fcd34d;
    box-shadow: 0 2px 8px rgba(217, 119, 6, .12);
}

.lp-sick-attest-alert-icon {
    color: #d97706;
    font-size: 24px;
    flex-shrink: 0;
}

.lp-sick-attest-alert-title {
    font-size: 14px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 3px;
}

.lp-sick-attest-alert-sub {
    font-size: 13px;
    color: #78350f;
    line-height: 1.4;
}

.lp-sick-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: filter .15s ease;
}

.lp-sick-submit-btn:hover {
    filter: brightness(.95);
}

.lp-sick-primary-btn {
    background: #dc2626;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
}

.lp-sick-primary-btn:hover {
    background: #b91c1c;
    color: #fff;
}

.lp-sick-dsgvo-hint {
    font-size: 12px;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 10px;
    margin-top: 10px;
}

/* Häkchen-Reihe unter der Bemerkung: Kind krank · Arzt besucht (· Datum) */
.lp-sick-flags-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.lp-check-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.lp-check-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #dc2626;
    cursor: pointer;
    flex-shrink: 0;
}

.lp-sick-doctor-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 6px;
    border-left: 1px solid #e5e7eb;
}

.lp-sick-doctor-date input[type="date"] {
    width: 160px;
}

.lp-sick-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
}

.lp-sick-card--attest-wanted {
    border-color: #fcd34d;
    background: #fffbeb;
}

.lp-sick-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-sick-card-dates {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.lp-sick-card-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.lp-sick-card-note {
    font-size: 13px;
    color: #374151;
    margin-top: 6px;
    font-style: italic;
}

.lp-sick-card-reject {
    font-size: 12px;
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 6px 10px;
    margin-top: 6px;
}

.lp-sick-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
}

.lp-sick-chip--green {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.lp-sick-chip--orange {
    background: #fef3c7;
    color: #92400e;
    border-color: #fcd34d;
}

.lp-sick-chip--gray {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #e5e7eb;
}

.lp-sick-attest-box {
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #fffbeb;
    border: 1px dashed #fcd34d;
}

.lp-sick-attest-box-head {
    font-size: 13px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-sick-attest-collapse {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
}

    .lp-sick-attest-collapse > summary {
        cursor: pointer;
        font-weight: 600;
        color: #0783ff;
        user-select: none;
    }

.lp-sick-card-attest-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    font-size: 12px;
}

.lp-sick-card-attest-name {
    color: #166534;
    font-weight: 600;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-sick-card-attest-link {
    color: #166534;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

    .lp-sick-card-attest-link:hover {
        color: #14532d;
        text-decoration: underline;
    }

.lp-sick-card-footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
    font-size: 11px;
    color: #9ca3af;
}

@media (max-width: 650px) {
    .lp-sick-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-sick-hero-stats {
        margin-left: 0;
    }
}

/* Profilbild-Löschen-Button (kleiner Trash unten rechts am Avatar) */
.lp-avatar-delete-form {
    position: absolute;
    bottom: 4px;
    right: 4px;
    margin: 0;
    z-index: 3;
}
.lp-avatar-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.92);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    font-size: 13px;
    transition: background .15s, transform .15s;
}
.lp-avatar-delete-btn:hover {
    background: #b91c1c;
    transform: scale(1.08);
}

/* ===== Dashboard-Schnellzugriffe (Mitarbeiter-Auswahl) ===== */
.lp-sc-pref {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
@media (max-width: 720px) {
    .lp-sc-pref { grid-template-columns: 1fr; }
}

.lp-sc-pref-col {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    padding: 12px;
    min-height: 80px;
}
.lp-sc-pref-list--selected { min-height: 56px; }

.lp-sc-pref-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 10px;
}
.lp-sc-pref-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 800;
    color: #0783ff;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 1px 9px;
    letter-spacing: 0;
}

.lp-sc-pref-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-sc-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.lp-sc-chip--dragging { opacity: .5; }
.lp-sc-chip-grip { color: #cbd5e1; cursor: grab; font-size: 16px; }
.lp-sc-chip-ico { font-size: 18px; display: inline-flex; }
.lp-sc-chip-label {
    flex: 1;
    min-width: 0;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lp-sc-chip-action {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .08s ease;
}
.lp-sc-chip-add { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.lp-sc-chip-add:hover { background: #059669; color: #fff; transform: scale(1.05); }
.lp-sc-chip-remove { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.lp-sc-chip-remove:hover { background: #dc2626; color: #fff; transform: scale(1.05); }

/* Limit erreicht: Hinzufügen-Buttons abdämpfen */
.lp-sc-pref.is-full .lp-sc-chip-add {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}

.lp-sc-pref-empty {
    font-size: 12.5px;
    color: #94a3b8;
    font-style: italic;
    padding: 6px 2px;
}

.lp-sc-saved {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 800;
    color: #059669;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease;
}
.lp-sc-saved.show { opacity: 1; transform: translateY(0); }

/* Menü-Reihenfolge: Chip beim Ziehen */
.lp-sc-chip.dragging { opacity: .5; cursor: grabbing; }

/* ===== Angemeldete Geräte / aktive Sitzungen ===== */
.lp-sessions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-session {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.lp-session--current {
    border-color: #a7f3d0;
    background: #f0fdf4;
}
.lp-session-ico {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #eff6ff;
    color: #0783ff;
    font-size: 20px;
}
.lp-session--current .lp-session-ico { background: #dcfce7; color: #059669; }
.lp-session-main { flex: 1; min-width: 0; }
.lp-session-name {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-session-badge {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #059669;
    background: #dcfce7;
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    padding: 2px 8px;
}
.lp-session-meta {
    margin-top: 3px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    font-size: 12.5px;
    color: #64748b;
}
.lp-session-meta span { display: inline-flex; align-items: center; gap: 5px; }
.lp-session-logout {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 9px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.lp-session-logout:hover { background: #dc2626; color: #fff; }
.lp-session-logout:disabled { opacity: .5; cursor: default; }

.lp-danger-ghost-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 8px 14px;
    transition: background .15s ease, color .15s ease;
}
.lp-danger-ghost-btn:hover { background: #fef2f2; color: #b91c1c; }
.lp-danger-ghost-btn:disabled { opacity: .5; cursor: default; }
