/* Container */
.pyp-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
}

/* Input veld */
.pyp-input {
    width: 200px;
    padding: 6px 8px;
    font-size: 1em;
    box-sizing: border-box;
}

/* Blokjes container */
.pyp-predefined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    width: 100%;
}

/* Blokjes */
.pyp-block {
    text-align: center;
    padding: 8px 12px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.pyp-block:hover {
    background-color: #f0f0f0;
}

/* Mobiel */
@media (max-width: 600px) {
    .pyp-input {
        width: 100%;
        max-width: 200px;
    }

    .pyp-predefined {
        grid-template-columns: repeat(2, 1fr);
    }
}