.file-drop-area {
    border: 2px dashed #ccc;
    border-radius: 15px;
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    box-sizing: border-box;
    max-width: 100%;
}

.file-drop-area.dragover {
    border-color: #4a90e2;
    background-color: #f0f8ff;
}

.file-list {
    margin: 0px;
    padding-left: 0px;
    font-size: 14px;
    text-align: left;
}

.file-list li {
    margin-top: 0.5rem;
}

.file-drop-area input[type="file"]:not([multiple]) ~ .file-list {
    display: none;
}

.file-drop-area .ui_like_button {
    white-space: nowrap;
    height: fit-content;
    flex-shrink: 0;
}

.file-drop-area .flexStart {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
}

.file-drop-area .file-msg {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    padding: 0;
}
