:root {
    --lcp-bg: #f5f5f7;
    --lcp-card: rgba(255, 255, 255, 0.82);
    --lcp-line: rgba(15, 23, 42, 0.08);
    --lcp-text: #111827;
    --lcp-muted: #6b7280;
    --lcp-primary: #0a84ff;
    --lcp-primary-2: #0071e3;
    --lcp-danger: #ff3b30;
    --lcp-success: #34c759;
    --lcp-warning: #ff9f0a;
    --lcp-radius: 22px;
    --lcp-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    --lcp-blur: blur(18px);
}

.lcp-app {
    font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lcp-text);
    background:
        radial-gradient(circle at top left, rgba(10, 132, 255, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(52, 199, 89, 0.05), transparent 24%),
        linear-gradient(180deg, #fbfbfd 0%, var(--lcp-bg) 100%);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.lcp-notify {
    margin: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
    backdrop-filter: var(--lcp-blur);
}

.lcp-notify.success {
    background: rgba(52, 199, 89, 0.12);
    color: #1f7a38;
}

.lcp-notify.error {
    background: rgba(255, 59, 48, 0.12);
    color: #b42318;
}

.lcp-login-view {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 32px;
    box-sizing: border-box;
}

.lcp-login-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: var(--lcp-blur);
    -webkit-backdrop-filter: var(--lcp-blur);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    padding: 30px;
}

.lcp-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.lcp-brand h2 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.lcp-brand p {
    margin: 5px 0 0;
    color: var(--lcp-muted);
    font-size: 0.95rem;
}

.lcp-brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    flex: 0 0 auto;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.lcp-brand-mark img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    display: block;
}

.lcp-brand-mark.small {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.95rem;
}

.lcp-form {
    display: grid;
    gap: 12px;
}

.lcp-form label {
    font-weight: 700;
    font-size: 0.94rem;
    letter-spacing: -0.01em;
}

.lcp-form input,
.lcp-form select {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.92);
    padding: 0 15px;
    font-size: 1rem;
    color: var(--lcp-text);
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lcp-form input:focus,
.lcp-form select:focus {
    outline: none;
    border-color: rgba(10,132,255,0.45);
    box-shadow: 0 0 0 4px rgba(10,132,255,0.12);
    background: #fff;
}

.lcp-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lcp-muted);
    font-weight: 600 !important;
}

.lcp-check input {
    min-height: auto;
    width: auto;
}

.lcp-btn {
    min-height: 50px;
    border-radius: 16px;
    border: 0;
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.16s ease, opacity 0.16s ease, box-shadow 0.16s ease;
}

.lcp-btn:hover {
    transform: translateY(-1px);
}

.lcp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lcp-primary), var(--lcp-primary-2));
    box-shadow: 0 12px 24px rgba(10, 132, 255, 0.22);
}

.lcp-feedback {
    min-height: 20px;
    margin: 0;
    font-size: 0.92rem;
    color: var(--lcp-muted);
}

.lcp-token-help {
    margin: -2px 0 4px;
    font-size: 0.9rem;
}

.lcp-token-help a {
    color: #0b5bb6;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 91, 182, 0.26);
}

.lcp-token-help a:hover,
.lcp-token-help a:focus-visible {
    color: #084787;
    border-bottom-color: rgba(8, 71, 135, 0.44);
}

.lcp-feedback.is-error {
    color: var(--lcp-danger);
}

.lcp-dashboard-view {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: 780px;
}

.lcp-sidebar {
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: var(--lcp-blur);
    -webkit-backdrop-filter: var(--lcp-blur);
    border-right: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--lcp-text);
    padding: 20px 18px;
}

.lcp-sidebar-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    margin-bottom: 16px;
}

.lcp-token-label {
    color: var(--lcp-muted);
    font-size: 0.88rem;
    margin-top: 4px;
    word-break: break-all;
}

.lcp-mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(10, 132, 255, 0.3);
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.16), rgba(90, 200, 250, 0.16));
    color: #0f3a6b;
    cursor: pointer;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(10, 132, 255, 0.15);
    transition: transform 0.16s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.lcp-mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.24), rgba(90, 200, 250, 0.24));
    border-color: rgba(10, 132, 255, 0.34);
    box-shadow: 0 12px 22px rgba(10, 132, 255, 0.2);
}

.lcp-mobile-menu-toggle:active {
    transform: translateY(1px);
}

.lcp-mobile-menu-toggle:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(10, 132, 255, 0.2),
        0 12px 22px rgba(10, 132, 255, 0.2);
}

.lcp-sidebar.is-mobile-open .lcp-mobile-menu-toggle {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.28), rgba(90, 200, 250, 0.28));
    border-color: rgba(10, 132, 255, 0.44);
    color: #0b2f57;
}

.lcp-mobile-menu-icon {
    position: relative;
    width: 18px;
    height: 14px;
    display: inline-block;
}

.lcp-mobile-menu-icon span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}

.lcp-mobile-menu-icon span:nth-child(1) { top: 0; }
.lcp-mobile-menu-icon span:nth-child(2) { top: 6px; }
.lcp-mobile-menu-icon span:nth-child(3) { top: 12px; }

.lcp-sidebar.is-mobile-open .lcp-mobile-menu-icon span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.lcp-sidebar.is-mobile-open .lcp-mobile-menu-icon span:nth-child(2) {
    opacity: 0;
}

.lcp-sidebar.is-mobile-open .lcp-mobile-menu-icon span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.lcp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lcp-nav {
    display: grid;
    gap: 8px;
}

.lcp-nav-item {
    width: 100%;
    text-align: left;
    min-height: 46px;
    border-radius: 14px;
    border: 0;
    background: transparent;
    color: #1f2937;
    font-weight: 700;
    padding: 0 12px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.lcp-nav-item:hover,
.lcp-nav-item.active {
    background: rgba(255,255,255,0.92);
    color: #1f2937;
    box-shadow: inset 0 0 0 1px rgba(15,23,42,0.05);
}

.lcp-nav-item.danger {
    margin-top: 10px;
    color: #b42318;
    background: rgba(255, 59, 48, 0.08);
    border: 1px solid rgba(180, 35, 24, 0.22);
    box-shadow: 0 4px 10px rgba(180, 35, 24, 0.08);
}

.lcp-nav-item.danger:hover,
.lcp-nav-item.danger.active {
    color: #8f1d14;
    background: rgba(255, 59, 48, 0.14);
    border-color: rgba(180, 35, 24, 0.34);
    box-shadow: 0 8px 16px rgba(180, 35, 24, 0.12);
}

.lcp-nav-item.danger:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 59, 48, 0.2),
        0 8px 16px rgba(180, 35, 24, 0.12);
}

@media (min-width: 769px) {
    .lcp-mobile-menu-toggle {
        display: none !important;
    }
}

.lcp-main {
    padding: 24px;
    display: grid;
    gap: 22px;
    min-width: 0;
}

#lcp-login-btn {
    appearance: none;
    -webkit-appearance: none;
    background: linear-gradient(135deg, #0a84ff, #0071e3);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    border: 1px solid transparent !important;
    text-shadow: none;
    min-height: 52px;
    border-radius: 16px;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(10, 132, 255, 0.22);
}

#lcp-login-btn:hover,
#lcp-login-btn:focus-visible,
#lcp-login-btn:active,
#lcp-login-btn:visited {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    box-shadow: 0 14px 28px rgba(10, 132, 255, 0.28);
}

.lcp-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.lcp-topbar-text {
    min-width: 0;
}

.lcp-kicker {
    color: var(--lcp-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.lcp-topbar h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.lcp-statusbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lcp-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 0 14px;
    font-weight: 800;
    background: rgba(255,255,255,0.88);
    color: #475569;
    white-space: nowrap;
    border: 1px solid rgba(15,23,42,0.05);
    backdrop-filter: blur(10px);
}

.lcp-pill.neutral {
    background: rgba(255,255,255,0.88);
    color: #475569;
}

.lcp-page {
    display: grid;
    gap: 22px;
}

.lcp-page[hidden] {
    display: none !important;
}

.lcp-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: var(--lcp-blur);
    -webkit-backdrop-filter: var(--lcp-blur);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 24px;
    box-shadow: var(--lcp-shadow);
    padding: 18px;
    min-width: 0;
}

.lcp-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.lcp-card h3 {
    margin: 0;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.lcp-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 22px;
}

/* TABLES */
.lcp-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,23,42,0.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.lcp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 100%;
    background: transparent;
}

.lcp-table-overview,
.lcp-table-calls,
.lcp-table-events {
    min-width: 620px;
}

.lcp-table-hunting {
    min-width: 1040px;
}

.lcp-table-hunting-history {
    min-width: 760px;
}

.lcp-table th,
.lcp-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    text-align: left;
    vertical-align: middle;
    font-size: 0.91rem;
    background: #fff;
}

.lcp-table th {
    color: #64748b;
    background: rgba(248, 250, 252, 0.95);
    font-weight: 800;
    position: sticky;
    top: 0;
    z-index: 1;
    backdrop-filter: blur(6px);
}

.lcp-table tr:last-child td {
    border-bottom: 0;
}

.lcp-table tbody tr {
    transition: background-color 0.16s ease;
}

.lcp-table tbody tr:hover {
    background: rgba(248, 250, 252, 0.68);
}

.lcp-table tbody tr:hover td {
    background: rgba(248, 250, 252, 0.68);
}

.lcp-table td small {
    font-size: 0.89rem;
    color: #1f2937;
    line-height: 1.35;
}

.lcp-empty {
    text-align: center;
    color: var(--lcp-muted);
    padding: 24px !important;
}

.lcp-dot {
    width: 13px;
    height: 13px;
    border-radius: 999px;
    display: inline-block;
    flex: 0 0 auto;
}

.lcp-dot.ok {
    background: var(--lcp-success);
}

.lcp-dot.warn {
    background: var(--lcp-warning);
}

.lcp-dot.danger {
    background: var(--lcp-danger);
}

.lcp-dot.neutral {
    background: #94a3b8;
}

.lcp-inline-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lcp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    margin: 4px 8px 4px 0;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    flex-wrap: wrap;
    word-break: break-word;
}

.lcp-badge-gray {
    background: #f3f4f6;
    color: #374151;
}

.lcp-badge-green {
    background: rgba(52, 199, 89, 0.14);
    color: #166534;
}

.lcp-hunting-live-row td {
    background: rgba(250, 251, 253, 0.8);
}

.lcp-hunting-summary-row td {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
}

.lcp-type-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(10, 132, 255, 0.1);
    color: #0b5bb6;
    font-size: 0.78rem;
    font-weight: 800;
}

.lcp-type-pill.neutral {
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
}

.lcp-kpi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    min-width: 44px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 800;
}

.lcp-kpi.strong {
    background: rgba(10, 132, 255, 0.12);
    color: #0b5bb6;
}

.lcp-hunting-summary-placeholder td {
    color: var(--lcp-muted);
}

.lcp-hunting-live-block + .lcp-hunting-live-block-second,
.lcp-hunting-live-block-second {
    margin-top: 10px;
}

.lcp-hunting-live-title {
    font-weight: 800;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--lcp-text);
}

.lcp-hunting-live-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.lcp-hunting-live-block {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.95);
    padding: 10px 12px;
}

.lcp-hunting-live-row-placeholder .lcp-hunting-live-block {
    background: rgba(248, 250, 252, 0.8);
}

.lcp-muted {
    color: var(--lcp-muted);
}

.lcp-history-mobile-main {
    display: none;
}

#lcp-hunting-history .lcp-history-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 6px;
}

#lcp-hunting-history .lcp-history-status-taken {
    background: rgba(52, 199, 89, 0.14);
    color: #116f35;
}

#lcp-hunting-history .lcp-history-status-missed {
    background: rgba(255, 59, 48, 0.13);
    color: #a12820;
}

#lcp-hunting-history .lcp-history-date {
    font-size: 0.84rem;
    color: #475569;
    font-weight: 700;
}

#lcp-hunting-history .lcp-history-file,
#lcp-hunting-history .lcp-history-calling,
#lcp-hunting-history .lcp-history-agent,
#lcp-hunting-history .lcp-history-metric {
    font-weight: 600;
    color: #1f2937;
}

.lcp-history-status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.lcp-history-status-taken {
    background: rgba(52, 199, 89, 0.14);
    color: #116f35;
}

.lcp-history-status-missed {
    background: rgba(255, 59, 48, 0.13);
    color: #a12820;
}

@media (max-width: 1180px) {
    .lcp-dashboard-view {
        grid-template-columns: 1fr;
    }

    .lcp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lcp-app {
        border-radius: 22px;
    }

    .lcp-login-view {
        padding: 14px;
        min-height: 100dvh;
    }

    .lcp-login-card {
        border-radius: 24px;
        padding: 22px;
    }

    .lcp-sidebar {
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .lcp-sidebar-head {
        margin-bottom: 10px;
    }

    .lcp-mobile-menu-toggle {
        display: flex;
    }

    .lcp-nav {
        display: none;
    }

    .lcp-nav.is-open {
        display: grid;
    }

    .lcp-main {
        padding: 14px;
        gap: 8px;
    }

    .lcp-page {
        gap: 10px;
    }

    .lcp-card {
        border-radius: 20px;
        padding: 14px;
    }

    .lcp-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .lcp-topbar h1 {
        font-size: 1.55rem;
    }

    .lcp-statusbar {
        width: 100%;
    }

    .lcp-pill {
        width: 100%;
        justify-content: center;
    }

    #lcp-live-event {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


/* Final table polish + mobile adaptation */
.lcp-table-wrap {
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 24px rgba(15, 23, 42, 0.04);
}

.lcp-table th {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
    color: #64748b;
}

.lcp-table td {
    color: #0f172a;
    font-size: 0.9rem;
}

.lcp-table tbody tr:nth-child(even) td {
    background: rgba(248, 250, 252, 0.45);
}

.lcp-table tbody tr:hover td {
    background: rgba(241, 245, 249, 0.72);
}

#lcp-hunting-table td[data-label="Repondus"],
#lcp-hunting-table td[data-label="Perdus"],
#lcp-hunting-table td[data-label="Traites"],
#lcp-hunting-table td[data-label="Succes"],
#lcp-hunting-table td[data-label="En attente"],
#lcp-hunting-table td[data-label="Attente moy."] {
    text-align: center;
}

@media (max-width: 860px) {
    .lcp-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .lcp-table-overview,
    .lcp-table-calls,
    .lcp-table-events,
    .lcp-table-hunting {
        min-width: 0 !important;
    }

    .lcp-table-overview thead,
    .lcp-table-calls thead,
    .lcp-table-events thead,
    .lcp-table-hunting thead {
        display: none;
    }

    #lcp-overview-table,
    #lcp-calls-table,
    #lcp-events-table,
    #lcp-hunting-table {
        display: grid;
        gap: 10px;
    }

    #lcp-overview-table tr,
    #lcp-calls-table tr,
    #lcp-events-table tr,
    #lcp-hunting-table tr.lcp-hunting-summary-row {
        display: block;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        padding: 12px;
    }

    #lcp-overview-table td,
    #lcp-calls-table td,
    #lcp-events-table td,
    #lcp-hunting-table tr.lcp-hunting-summary-row td {
        display: grid;
        grid-template-columns: 112px 1fr;
        gap: 10px;
        align-items: start;
        border: 0;
        padding: 6px 0;
        background: transparent;
        font-size: 0.88rem;
    }

    #lcp-overview-table td::before,
    #lcp-calls-table td::before,
    #lcp-events-table td::before,
    #lcp-hunting-table tr.lcp-hunting-summary-row td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 0.76rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    #lcp-overview-table td[colspan],
    #lcp-calls-table td[colspan],
    #lcp-events-table td[colspan],
    #lcp-hunting-table td[colspan] {
        display: block;
        text-align: center;
        padding: 10px 6px !important;
    }

    #lcp-overview-table td[colspan]::before,
    #lcp-calls-table td[colspan]::before,
    #lcp-events-table td[colspan]::before,
    #lcp-hunting-table td[colspan]::before {
        display: none;
        content: "";
    }

    #lcp-hunting-table tr.lcp-hunting-summary-row td[data-label="Description"] {
        grid-template-columns: 1fr;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        margin-top: 4px;
        padding-top: 10px;
    }

    #lcp-hunting-table tr.lcp-hunting-summary-row td[data-label="Description"]::before {
        display: none;
    }

    #lcp-hunting-table tr.lcp-hunting-summary-row td[data-label="Repondus"],
    #lcp-hunting-table tr.lcp-hunting-summary-row td[data-label="Perdus"],
    #lcp-hunting-table tr.lcp-hunting-summary-row td[data-label="Traites"] {
        display: none;
    }

    #lcp-hunting-table tr.lcp-hunting-live-row {
        display: block;
        border: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    #lcp-hunting-table tr.lcp-hunting-live-row td {
        display: block;
        border: 0;
        padding: 0;
        background: transparent;
    }

    #lcp-hunting-table tr.lcp-hunting-live-row td::before {
        display: none;
    }

    .lcp-hunting-live-block {
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
        padding: 12px;
    }

    .lcp-table-hunting-history {
        min-width: 100% !important;
    }

    .lcp-table-hunting-history thead {
        display: none;
    }

    .lcp-table tbody#lcp-hunting-history {
        display: grid;
        gap: 10px;
    }

    #lcp-hunting-history tr {
        display: block;
        background: rgba(255, 255, 255, 0.99);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        padding: 0;
    }

    #lcp-hunting-history tr td {
        display: block;
        padding: 0;
        border: 0;
        background: transparent;
    }

    #lcp-hunting-history tr td:not([colspan]):not(:first-child) {
        display: none;
    }

    #lcp-hunting-history .lcp-history-date,
    #lcp-hunting-history .lcp-history-status {
        display: none;
    }

    #lcp-hunting-history .lcp-history-mobile-main {
        display: grid;
        gap: 8px;
        padding: 12px;
    }

    #lcp-hunting-history .lcp-history-mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: wrap;
    }

    #lcp-hunting-history tr td[colspan] {
        text-align: center;
        padding: 12px 8px !important;
    }
}

@media (max-width: 520px) {
    #lcp-overview-table td,
    #lcp-calls-table td,
    #lcp-events-table td,
    #lcp-hunting-table tr.lcp-hunting-summary-row td {
        grid-template-columns: 96px 1fr;
        gap: 8px;
        font-size: 0.84rem;
    }

    #lcp-overview-table td::before,
    #lcp-calls-table td::before,
    #lcp-events-table td::before,
    #lcp-hunting-table tr.lcp-hunting-summary-row td::before {
        font-size: 0.72rem;
    }
}


