.file-input--native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.uploaded-file-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    color: #333;
}

.file-icon {
    font-size: 20px;
    color: #00c8d7;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.file-download-link {
    color: #007bff;
    text-decoration: none;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    font-size: 0.95rem;
}

.file-download-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.delete-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.delete-button:hover {
    background-color: #dc3545;
    color: white;
}

.delete-button .material-symbols-outlined {
    font-size: 18px;
}
