/* File List Styling */
.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.file-tag {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(181, 156, 110, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    max-width: 100%;
}

.file-tag:hover {
    background: rgba(181, 156, 110, 0.1);
    border-color: rgba(181, 156, 110, 0.8);
}

.file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.file-remove {
    cursor: pointer;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    transition: all 0.2s;
}

.file-remove:hover {
    background: #ff6b6b;
    color: white;
}