#form-1 {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 10px #ccc;
max-width: 600px;
}

/* UL auf "Tag-Container" umbauen */
.schlagwoerter-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;   /* sorgt dafür, dass die Tags umbrechen */
    gap: 10px;         /* Abstand zwischen den Tags */
}

/* jedes LI wird zu einem Tag */
.sv-schlagwort-item {
    display: inline-flex;   /* inline-flex sorgt für Nebeneinander-Layout */
    align-items: center;
    background: #c5c5c5;
    border-radius: 5px;
    padding: 3px 6px;
    gap: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.sv-schlagwort-item:hover {
    background: #e0e0e0;
}

/* nur der Textteil klickbar */
.sv-schlagwort {
    cursor: pointer;
}

/* Lösch-Button klein und direkt daneben */
.sv-delete-btn {
    margin: 5px;
    padding: 2px 3px;
    font-size: 12px;
    border: none;
    border-radius: 6px;
    background: #0073aa;
    background-color: #0073aa;
    color: white;
    cursor: pointer;
}

.sv-delete-btn:hover {
    color: darkred;
}


.sv-delete-category-btn.dashicons {
    font-size: 22px;
    color: green;
    background: none;
    border: none;
    cursor: pointer;
}

.sv-delete-category-btn.dashicons:hover {
    color: red;
}


