.avatar img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

#trumbowyg-icons {
    display:none;
}

.form-control {
    border-radius: 1px;
}

#modal-select-image .modal-dialog {
    width:800px;
    max-width: 100%;
    height:100vh;
    position:absolute;
    top:0;
    right:0;
    margin:0;
}

#modal-select-image .modal-footer {
    width:100%;
    position:absolute;
    bottom:0;
    left:0;
    background:#fff;
    z-index: 20;
}

#modal-select-image .modal-body {
    height:calc(100vh - 62px);
    padding-bottom:80px;
    padding-top:0;
}

#modal-select-image .modal-body .search-box {
    position: sticky;
    top: 0;
    background: white;
    z-index: 20;
    padding: 20px 0;
}

#modal-select-image .gallery-preview {
    padding:10px 0;
}

#modal-select-image .gallery-preview p {
    margin:0;
    margin-top:5px;
}

.custom-multiple-select {
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.custom-multiple-select .selected-options {
    background: #f9f9f9;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.custom-multiple-select .options-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none; /* Sicherstellen, dass die Liste standardmäßig versteckt ist */
}

.custom-multiple-select .option-item {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.custom-multiple-select .option-item:hover {
    background: #f1f1f1;
}

.custom-multiple-select .option-checkbox {
    margin-right: 10px;
}

.hidden-select {
    display: none;
}