/* Styling für das Kategorie-Bild Interface */
.category-image-preview {
    max-width: 300px;
    height: auto;
    margin: 10px 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#category-image-wrapper {
    margin: 10px 0;
    min-height: 50px;
}

.category-image-button,
.category-image-remove {
    margin: 5px 10px 5px 0 !important;
}

/* Spezifische Styles für das Add-Form */
.form-field.term-group {
    margin-bottom: 20px;
}

/* Spezifische Styles für das Edit-Form */
.form-field.term-group-wrap td {
    padding: 15px 10px;
}

/* Hover-Effekte */
.category-image-preview:hover {
    opacity: 0.9;
    cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 782px) {
    .category-image-preview {
        max-width: 100%;
    }
    
    .category-image-button,
    .category-image-remove {
        width: 100%;
        margin: 5px 0 !important;
        text-align: center;
    }
}