.type-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}

.type-btn:hover {
    border-color: var(--primary);
    background: rgba(26, 86, 219, 0.03);
}

.type-btn.active {
    border-color: var(--primary);
    background: rgba(26, 86, 219, 0.06);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.type-btn .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-btn[data-type="bug"] .icon { background: #fef2f2; color: #dc2626; }
.type-btn[data-type="wens"] .icon { background: #fefce8; color: #ca8a04; }
.type-btn[data-type="vraag"] .icon { background: #eff6ff; color: #2563eb; }
.type-btn[data-type="overig"] .icon { background: #f0fdf4; color: #16a34a; }

.type-btn .type-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.screenshot-thumb {
    position: relative;
    width: 96px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f8fafc;
}

.screenshot-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.screenshot-thumb .name {
    font-size: 0.625rem;
    color: var(--text-muted);
    padding: 3px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.screenshot-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1;
}

.screenshot-remove:hover {
    background: rgba(0,0,0,0.8);
}

@media (max-width: 640px) {
    .type-selector { grid-template-columns: repeat(2, 1fr); }
}
