.lc-chat-root { position: fixed; right: 1rem; bottom: 1rem; z-index: 9999; font-family: system-ui, sans-serif; }
.lc-chat-toggle {
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
    color: #042f2e;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.35);
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.lc-chat-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(45, 212, 191, 0.5);
}
.lc-chat-panel {
    position: absolute;
    right: 0;
    bottom: 3.5rem;
    width: min(340px, calc(100vw - 2rem));
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-height: 420px;
    color: #e2e8f0;
}
.lc-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #1e293b;
}
.lc-chat-header button { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: #94a3b8; }
.lc-chat-messages { flex: 1; overflow: auto; padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.lc-chat-msg { padding: 0.5rem 0.65rem; border-radius: 10px; max-width: 90%; font-size: 0.9rem; }
.lc-chat-msg.staff { background: rgba(45, 212, 191, 0.15); align-self: flex-start; border: 1px solid rgba(45, 212, 191, 0.25); }
.lc-chat-msg.guest, .lc-chat-msg.client { background: #1e293b; align-self: flex-end; }
.lc-chat-form { padding: 0.75rem; border-top: 1px solid #1e293b; display: flex; flex-direction: column; gap: 0.5rem; }
.lc-chat-form input, .lc-chat-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #111c33;
    color: #e2e8f0;
}
.service-map { height: 220px; border-radius: 12px; margin: 0.75rem 0; border: 1px solid #334155; }
.state-map-panel { margin: 1.5rem 0; }
