/* Voor/Tegen Block Styling */
.voor-tegen-block {
    margin: 20px 0;
    text-align: left;
}

.partijen-titel {
    margin: 15px 0 0 0;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
}

.voor-partijen .partijen-titel {
    color: #059669;
}

.tegen-partijen .partijen-titel {
    color: #dc2626;
}

.partijen-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partij-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 0 0 0;
}

.partij-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.partij-bullet {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
    margin-top: 2px;
}

.voor-bullet {
    background-color: #10b981;
    color: white;
}

.tegen-bullet {
    background-color: #ef4444;
    color: white;
}

.partij-text {
    flex: 1;
    line-height: 1.5;
    color: #374151;
}

/* Editor Styling */
.wp-block-editor .voor-tegen-block {
    border: 2px dashed #ccc;
}

.partij-input-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.partij-input {
    flex: 1;
    margin-left: 12px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    min-height: 20px;
}

.partij-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.partij-input[data-is-placeholder-visible="true"] {
    color: #999;
}

.remove-partij {
    margin-left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.add-partij {
    margin-top: 10px;
    margin-left: 32px;
}

.partijen-editor {
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .voor-tegen-block {
        padding: 15px;
        margin: 15px 0;
    }

    .partij-bullet {
        width: 18px;
        height: 18px;
        line-height: 16px;
        font-size: 12px;
    }

    .partijen-titel {
        font-size: 16px;
    }
}