/* ════════════════════════════════════════════════════════════
   buttons.css — Knoppen, search button, API button
   ════════════════════════════════════════════════════════════ */

/* ── Buttons ── */
.btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border2);
    background: var(--white);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
    letter-spacing: 0.3px;
}
.btn:hover { background: var(--bg); }
.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.btn-primary:hover { background: #1648c7; border-color: #1648c7; }
.btn-danger { color: var(--red); border-color: #fca5a5; }
.btn-danger:hover { background: var(--red-bg); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Search button ── */
.btn-search {
    width: 100%;
    padding: 10px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: 0.3px;
}
.btn-search:hover { background: #1648c7; }

/* ── API Subscription button ── */
.btn-api {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--border2);
    background: var(--white);
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}
.btn-api:hover { background: var(--accent-bg); color: var(--accent); border-color: var(--accent); }
.btn-api .api-dot, .btn-api .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--muted);
    flex-shrink: 0;
    transition: background 0.15s;
}
.btn-api:hover .api-dot, .btn-api:hover .dot { background: var(--accent); }
.btn-api.actief .api-dot, .btn-api.actief .dot { background: var(--green); }
.btn-api.actief { color: var(--green); border-color: #a7f3d0; }

/* API TOEGANG — fixed links onderin */
.btn-api-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Sidebar bottom (enkelvoudig) */
.sidebar-bottom {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Expand knop in resultaten tabel */
.expand-btn {
    background: none;
    border: 1px solid var(--border2);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    color: var(--muted);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
}
.expand-btn:hover { border-color: var(--accent); color: var(--accent); }
