/* Helpdesk hjwh - stijl.css (gedeelde opmaak voor alle pagina's van het ticketsysteem) */
* { box-sizing: border-box; }
body {
    margin: 0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    background-image: radial-gradient(circle at 20% 20%, rgba(249,115,22,0.08), transparent 40%),
                       radial-gradient(circle at 80% 80%, rgba(16,185,129,0.08), transparent 40%);
    color: #f8fafc;
    min-height: 100vh;
}
.wrap { max-width: 640px; margin: 0 auto; }
.wrap.breed { max-width: 900px; }
.card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}
h1 {
    font-size: 1.8rem;
    margin: 0 0 6px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sub { color: #94a3b8; margin: 0 0 28px; }
label { display: block; font-weight: 600; margin: 18px 0 6px; font-size: 0.92rem; }
input[type=text], input[type=email], input[type=password], textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(15, 23, 42, 0.6);
    color: #f8fafc;
    font-size: 1rem;
    font-family: inherit;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #f97316;
}
button, .btn {
    display: inline-block;
    margin-top: 22px;
    padding: 13px 26px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}
.btn.secundair {
    background: rgba(255,255,255,0.08);
    color: #f8fafc;
}
.melding {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.92rem;
}
.melding.succes { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.4); color: #6ee7b7; }
.melding.fout { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.4); color: #fca5a5; }
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.92rem; }
th { color: #94a3b8; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; }
tr.rij-link { cursor: pointer; }
tr.rij-link:hover { background: rgba(255,255,255,0.03); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge.open { background: rgba(249,115,22,0.15); color: #fb923c; }
.badge.beantwoord { background: rgba(16,185,129,0.15); color: #34d399; }
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 0.88rem; }
.topbar a { color: #94a3b8; text-decoration: none; }
.topbar a:hover { color: #f8fafc; }
.suggestie {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
}
.suggestie .herkomst { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; margin-bottom: 4px; }
.suggestie.ticket .herkomst { color: #fb923c; }
.suggestie.kennisbank .herkomst { color: #34d399; }
.suggestie p { margin: 0 0 8px; color: #cbd5e1; font-size: 0.9rem; }
.suggestie button, .suggestie .btn { margin-top: 0; padding: 7px 14px; font-size: 0.82rem; }
footer { text-align: center; color: #475569; font-size: 0.8rem; margin-top: 40px; }
