.incapacidad-ia-wrapper {
    font-family: Arial, sans-serif;
    margin: 20px;
    max-width: 800px;
}
.dropzone-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: background-color 0.3s;
}
.dropzone-area.dragover {
    background-color: #e6f7ff;
}
#file-list .file-entry {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    background: #f9f9f9;
    padding: 8px;
    border-radius: 4px;
}
.remove-btn {
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
#analysis-result {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f0f0f0;
    white-space: pre-wrap;
}