/* =============================================
   Sparkline LDP – AI Coach chat-interface
   Branding: Montserrat, paars (#6905b0 / #951af2)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── Wrapper ──────────────────────────────────────────────────────────────── */
.sldp-coach-wrapper {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88em;
    border: 1px solid #e0d0f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(105,5,176,0.08);
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.sldp-coach-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #6905b0;
    padding: 14px 18px;
}

.sldp-coach-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #951af2;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sldp-coach-naam {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.85em;
}

.sldp-coach-subtitel {
    display: block;
    color: #d4b8f5;
    font-size: 0.75em;
}

/* ── Chatvenster ──────────────────────────────────────────────────────────── */
.sldp-chat-venster {
    height: 380px;
    overflow-y: auto;
    padding: 16px;
    background: #faf7ff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Berichten ────────────────────────────────────────────────────────────── */
.sldp-bericht {
    display: flex;
    max-width: 85%;
}

.sldp-bericht--coach {
    align-self: flex-start;
}

.sldp-bericht--gebruiker {
    align-self: flex-end;
}

.sldp-bericht-inhoud {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.88em;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.sldp-bericht--coach .sldp-bericht-inhoud {
    background: #fff;
    border: 1px solid #e0d0f7;
    border-bottom-left-radius: 4px;
    color: #1a1a1a;
}

.sldp-bericht--gebruiker .sldp-bericht-inhoud {
    background: #6905b0;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.sldp-bericht--fout .sldp-bericht-inhoud {
    background: #fff3f3;
    border: 1px solid #d46d62;
    color: #a00;
    align-self: center;
    max-width: 100%;
}

/* ── Tik-animatie ─────────────────────────────────────────────────────────── */
.sldp-tikt .sldp-bericht-inhoud {
    padding: 12px 16px;
}

.sldp-tik-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a99cec;
    margin: 0 2px;
    animation: sldp-tik 1.2s infinite ease-in-out;
}

.sldp-tik-dot:nth-child(2) { animation-delay: 0.2s; }
.sldp-tik-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes sldp-tik {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40%            { transform: scale(1.2); opacity: 1; }
}

/* ── Invoergebied ─────────────────────────────────────────────────────────── */
.sldp-chat-invoer {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #e0d0f7;
    align-items: flex-end;
}

.sldp-tekstvak-chat {
    flex: 1;
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88em;
    line-height: 1.5;
    resize: none;
    color: #1a1a1a;
    transition: border-color 0.2s;
}

.sldp-tekstvak-chat:focus {
    outline: none;
    border-color: #951af2;
    box-shadow: 0 0 0 3px rgba(149,26,242,0.1);
}

.sldp-stuur-knop {
    padding: 7px 16px;
    background: #6905b0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.sldp-stuur-knop:hover {
    background: #951af2;
}

.sldp-stuur-knop:disabled {
    background: #a99cec;
    cursor: not-allowed;
}

/* ── Disclaimer ───────────────────────────────────────────────────────────── */
.sldp-coach-disclaimer {
    font-size: 0.75em;
    color: #bbb;
    text-align: center;
    padding: 6px 12px 10px;
    background: #fff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
