/* 🟢 Container */
.custom-tags-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-height: 44px;
    background-color: white;
}

/* 🟢 Tag-Liste */
.custom-tags-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 🟢 Einzelne Tags (Argon Default Farbe #172b4d) */
.custom-tag {
    background-color: #172b4d;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    margin: 4px;
    display: flex;
    align-items: center;
}

/* 🟢 Button zum Entfernen („x“) */
.custom-tag-remove {
    background: none;
    border: none;
    font-size: 12px;
    margin-left: 8px;
    color: white;
    cursor: pointer;
}

.custom-tag-remove:hover {
    color: #ff4d4d;
}

/* 🟢 Input-Feld */
.custom-tags-input {
    border: none;
    outline: none;
    font-size: 14px;
    padding: 4px;
    flex-grow: 1;
    min-width: 150px;
    color: #172b4d;
}

/* 🟢 Info-Text „Press Enter to add“ in rgb(131, 146, 171) */
.custom-tags-input::placeholder {
    color: rgb(131, 146, 171);
    font-style: italic;
}

/* 🟢 Responsive Anpassungen */
@media (max-width: 768px) {
    .custom-tags-container {
        padding: 8px;
    }

    .custom-tag {
        font-size: 12px;
        padding: 2px 8px;
    }

    .custom-tags-input {
        font-size: 14px;
    }
}