#hik-widget {
    font-family: 'Segoe UI', sans-serif;
    max-width: 420px;
    background: #111;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
}

#hik-status {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    display: none;
}

.hik-status-laden { background: #1a2a3a; color: #7ab8f5; }
.hik-status-ok    { background: #0d2e1a; color: #4ade80; display: block !important; }
.hik-status-fout  { background: #2e0d0d; color: #f87171; display: block !important; }
.hik-status-wacht { background: #2a2a0d; color: #fbbf24; display: block !important; }
.hik-status-klaar { background: #1a1a1a; color: #888;    display: block !important; }

#hik-knoppen {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.hik-knop {
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 600;
    background: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.hik-knop:hover:not(:disabled) {
    background: #2a2a2a;
    border-color: #4ade80;
    color: #4ade80;
}

.hik-knop:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

#hik-timer {
    font-size: 12px;
    color: #888;
}

#hik-balk {
    background: #222;
    border-radius: 4px;
    height: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

#hik-vulling {
    height: 100%;
    width: 0%;
    background: #4ade80;
    border-radius: 4px;
    transition: width 0.9s linear;
}

#hik-timer strong {
    color: #4ade80;
}