.kkForm select + .select2.select2-container{
    appearance: none;
    -webkit-appearance: none;
    font-size: 0.9375rem;
    border-radius: 1.875rem;
    border: 1px solid #0A100E;
    background-color: #ffffff;
    height: 70px;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #000000;
    transition: border-radius 0.2s ease-in;
}

.kkForm select + .select2.select2-container .select2-selection{
    border: none;
    padding: 0;
}

.kkForm .file-drop-area {
    appearance: none;
    -webkit-appearance: none;
    font-size: 0.9375rem;
    border-radius: 1.875rem;
    border: 1px dashed #0A100E;
    background-color: #ffffff;
    min-height: 10rem;
    padding: 1.5rem;
    color: #000000;
    transition: border-color 0.2s ease-in;
    text-align: center;
    cursor: pointer;
}
.kkForm .file-drop-area.dragover {
    border-color: #007bff;
    background-color: #f8f9fa;
}
.kkForm .file-input-hidden {
    display: none; /* Input unsichtbar, aber vorhanden */
}

.kkForm .file-preview-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.kkForm .file-preview-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
}
.kkForm .file-preview-thumb {
    width: 40px;
    height: auto;
    object-fit: cover;
    margin-right: 10px;
}
.kkForm .file-preview-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: url('/plugins/jtl_plugins/assets/pdf-icon.svg') no-repeat center/contain;
}
.kkForm .remove-btn {
    position: absolute;
    top: 2px;
    right: 5px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}
